public PackagingFixture(RemoteBehaviorGraph remoteGraph, CommandRunner runner) { _remoteGraph = remoteGraph; _runner = runner; this["SetUp"] = Embed<PackagingSetupFixture>("If the packaging setup is"); }
public Package1Fixture(RemoteBehaviorGraph remoteGraph, ApplicationDriver application) { _remoteGraph = remoteGraph; _application = application; Title = "For TestPackage1 (Assembly 'TestPackage1')"; }
public Package1Fixture(RemoteBehaviorGraph remoteGraph, NavigationDriver navigation) { _remoteGraph = remoteGraph; _navigation = navigation; Title = "For TestPackage1 (Assembly 'TestPackage1')"; }
public override void RegisterServices(ITestContext context) { base.RegisterServices(context); var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT); context.Store(remoteGraph); context.Store(_runner); }
public Package4Fixture(RemoteBehaviorGraph remoteGraph, ApplicationDriver application) { _remoteGraph = remoteGraph; _application = application; Title = "For TestPackage4 - Spark (Assembly 'TestPackage4')"; this["SetUp"] = Embed<PackagingSetupFixture>("If the packaging setup is"); }
public void RegisterServices(ITestContext context) { var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT); context.Store(remoteGraph); context.Store(_runner); context.Store(_application); }
public void try_to_execute_the_remote_behavior_graph() { var remote = new RemoteBehaviorGraph("http://localhost/fubu-testing"); remote.All().AllEndpoints.Each(x => Debug.WriteLine(x.RoutePattern)); }
public HelloWorldFixture() { _remoteGraph = new RemoteBehaviorGraph("http://localhost/helloworld"); }