Skip to content

Commit a76371b

Browse files
committed
Update clu-getstart.md
1 parent 1698b39 commit a76371b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clu-getstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ Testing will consist of scenario tests and unit tests. Scenario tests should be
9494
- The ```Commands.Common.ScenarioTest``` project contains classes that enable executing bash scenario tests in Visual Studio, or cross-platform using dnx.
9595

9696
- To implement an xunit bash scenario test you must
97-
- Add a ```[TestCollection("SampleTestCollection")]``` attribute to your test class
97+
- Add a ```[Collection("SampleCollection")]``` attribute to your test class
9898
- Add a field to your class of type ```ScenarioTestFixture``` and add a constructor that initializes it
9999
```C#
100-
[TestCollection("SampleTestCollection")]
100+
[Collection("SampleCollection")]
101101
public class SampleTestClass
102102
{
103103
ScenarioTestFixture _fixture;

0 commit comments

Comments
 (0)