File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
TestStack.BDDfy.Tests/Scanner Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
1
+ using System . Collections . Generic ;
3
2
using System . Linq ;
4
- using System . Text ;
5
3
using NUnit . Framework ;
6
4
using TestStack . BDDfy . Configuration ;
7
5
using TestStack . BDDfy . Core ;
8
- using TestStack . BDDfy . Scanners ;
9
6
using TestStack . BDDfy . Scanners . ScenarioScanners ;
10
- using TestStack . BDDfy . Scanners . StepScanners . ExecutableAttribute ;
11
7
using TestStack . BDDfy . Scanners . StepScanners . ExecutableAttribute . GwtAttributes ;
12
8
13
9
namespace TestStack . BDDfy . Tests . Scanner
14
10
{
15
11
[ TestFixture ]
16
12
public class ExecutableAttributeOrderOrdersTheStepsCorrectly
17
13
{
18
- private TypeWithOrderedAttribute _typeWithAttribute ;
19
14
private List < ExecutionStep > _steps ;
20
15
21
16
private class TypeWithOrderedAttribute
22
17
{
23
-
24
-
25
18
[ AndThen ( Order = 2 ) ]
26
19
public void AndThen2 ( ) { }
27
20
@@ -58,7 +51,6 @@ public void AndGivenNeg3() { }
58
51
[ AndGiven ( Order = 2 ) ]
59
52
public void AndGiven2Again ( ) { }
60
53
61
-
62
54
[ When ( Order = 1 ) ]
63
55
public void When1 ( ) { }
64
56
You can’t perform that action at this time.
0 commit comments