linkrope / dunit

xUnit Testing Framework for D
Boost Software License 1.0
37 stars 9 forks source link

Named unittest #25

Open andre2007 opened 5 years ago

andre2007 commented 5 years ago

You can name your unittest in D:

@("simple test") unittest
{
    assert(1 ==1);
}

This name could also be used in d-unit