Beispiel #1
0
 public void Setup()
 {
     GlobalContext.FeatureContext = new FeatureContext();
     _annotate = new StepAnnotation <AddFeature>(this);
     _step     = new BookingSteps(GlobalContext);
     _assert   = new AssertSteps(GlobalContext.FeatureContext);
 }
Beispiel #2
0
        public void Setup()
        {
            var context = new StepContext();

            context.AddCustomer().AddEnvironment().AddSavedItem().AddProducts();
            _annotate = new StepAnnotation <SearchFeature>(this);
            _step     = new SearchSteps(context);
        }
Beispiel #3
0
 public void TearDown()
 {
     _annotate = null;
     _step     = null;
     _assert   = null;
 }
Beispiel #4
0
 public void Setup()
 {
     _annotate = new StepAnnotation <SearchFeature>(this);
     _step     = new SearchSteps();
 }