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
407757b
... +0 ...
f2b9a99
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
60 | 60 | } |
|
61 | 61 | ||
62 | 62 | /// Concatenated string results |
|
63 | - | string text(string separator = "", Args...)(auto ref const(Args) args) |
|
63 | + | string text(string separator = "", Args...)(auto ref Args args) |
|
64 | 64 | if (Args.length > 0) |
|
65 | 65 | { |
|
66 | 66 | static if (Args.length == 1) |
88 | 88 | /// |
|
89 | 89 | @safe pure nothrow unittest |
|
90 | 90 | { |
|
91 | - | assert(text("str ", true, " ", 100, " ", 124.1) == "str true 100 124.1", text("str ", true, " ", 100, " ", 124.1)); |
|
91 | + | const i = 100; |
|
92 | + | assert(text("str ", true, " ", i, " ", 124.1) == "str true 100 124.1", text("str ", true, " ", 100, " ", 124.1)); |
|
92 | 93 | assert(text!" "("str", true, 100, 124.1) == "str true 100 124.1"); |
|
93 | 94 | } |
|
94 | 95 |
Files | Coverage |
---|---|
allocation.d | 98.71% |
chunks.d | 95.92% |
concatenation.d | 98.89% |
connect/cpython.d | 0.00% |
dynamic.d | 98.28% |
field.d | 92.95% |
filling.d | 100.00% |
fuse.d | 85.53% |
internal.d | 72.00% |
iterator.d | 92.90% |
mutation.d | 100.00% |
ndfield.d | 85.71% |
package.d | 92.14% |
slice.d | 97.97% |
sorting.d | 92.68% |
topology.d | 98.63% |
Folder Totals (16 files) | 94.66% |
Project Totals (62 files) | 92.66% |
f2b9a99
407757b