No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
2dd3743
... +2 ...
a579949
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
51 | 51 | } |
|
52 | 52 | ||
53 | 53 | static func makeDOM(path: LayerTree.Path, precision: Int) -> String { |
|
54 | - | let formatter = XMLFormatter.CoordinateFormatter(delimeter: .comma, |
|
55 | - | precision: .capped(max: precision)) |
|
54 | + | let formatter = XML.Formatter.CoordinateFormatter(delimeter: .comma, |
|
55 | + | precision: .capped(max: precision)) |
|
56 | 56 | return path.segments |
|
57 | 57 | .map { makeDOM(segment: $0, formatter: formatter) } |
|
58 | 58 | .joined(separator: " ") |
|
59 | 59 | } |
|
60 | 60 | ||
61 | 61 | static func makeDOM(segment: LayerTree.Path.Segment, |
|
62 | - | formatter: XMLFormatter.CoordinateFormatter) -> String { |
|
62 | + | formatter: XML.Formatter.CoordinateFormatter) -> String { |
|
63 | 63 | switch segment { |
|
64 | 64 | case .move(let point): |
|
65 | 65 | let point = formatter.format(point.x, point.y) |
Learn more Showing 4 files with coverage changes found.
SwiftDraw/XML.Formatter.SVG.swift
SwiftDraw/XML.Formatter.swift
SwiftDraw/LayerTree.Builder.Path.swift
SwiftDraw/Parser.XML.SVG.swift
Files | Coverage |
---|---|
SwiftDraw | 0.61% 76.91% |
Project Totals (62 files) | 76.91% |
a579949
b5c8bdf
244820b
2dd3743