Skip to content

Commit 720b13a

Browse files
committed
Removed the unused member to fix the build
1 parent 5b71bec commit 720b13a

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

TestStack.BDDfy.Tests/Scanner/ExecutableAttributeOrderOrdersTheStepsCorrectly.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,20 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32
using System.Linq;
4-
using System.Text;
53
using NUnit.Framework;
64
using TestStack.BDDfy.Configuration;
75
using TestStack.BDDfy.Core;
8-
using TestStack.BDDfy.Scanners;
96
using TestStack.BDDfy.Scanners.ScenarioScanners;
10-
using TestStack.BDDfy.Scanners.StepScanners.ExecutableAttribute;
117
using TestStack.BDDfy.Scanners.StepScanners.ExecutableAttribute.GwtAttributes;
128

139
namespace TestStack.BDDfy.Tests.Scanner
1410
{
1511
[TestFixture]
1612
public class ExecutableAttributeOrderOrdersTheStepsCorrectly
1713
{
18-
private TypeWithOrderedAttribute _typeWithAttribute;
1914
private List<ExecutionStep> _steps;
2015

2116
private class TypeWithOrderedAttribute
2217
{
23-
24-
2518
[AndThen(Order = 2)]
2619
public void AndThen2() { }
2720

@@ -58,7 +51,6 @@ public void AndGivenNeg3() { }
5851
[AndGiven(Order = 2)]
5952
public void AndGiven2Again() { }
6053

61-
6254
[When(Order = 1)]
6355
public void When1() { }
6456

0 commit comments

Comments
 (0)