Exemple #1
0
        public Package1Fixture(RemoteBehaviorGraph remoteGraph, NavigationDriver navigation)
        {
            _remoteGraph = remoteGraph;
            _navigation  = navigation;

            Title = "For TestPackage1 (Assembly 'TestPackage1')";
        }
Exemple #2
0
        public Package1Fixture(RemoteBehaviorGraph remoteGraph, ApplicationDriver application)
        {
            _remoteGraph = remoteGraph;
            _application = application;

            Title = "For TestPackage1 (Assembly 'TestPackage1')";
        }
Exemple #3
0
        public PackagingFixture(RemoteBehaviorGraph remoteGraph, CommandRunner runner)
        {
            _remoteGraph = remoteGraph;
            _runner      = runner;


            this["SetUp"] = Embed <PackagingSetupFixture>("If the packaging setup is");
        }
Exemple #4
0
        public Package4Fixture(RemoteBehaviorGraph remoteGraph, NavigationDriver navigation)
        {
            _remoteGraph = remoteGraph;
            _navigation  = navigation;

            Title = "For TestPackage4 - Spark (Assembly 'TestPackage4')";

            this["SetUp"] = Embed <PackagingSetupFixture>("If the packaging setup is");
        }
Exemple #5
0
        public override void RegisterServices(ITestContext context)
        {
            base.RegisterServices(context);
            var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT);

            context.Store(remoteGraph);

            context.Store(_runner);
        }
Exemple #6
0
        public void RegisterServices(ITestContext context)
        {
            var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT);

            context.Store(remoteGraph);

            context.Store(_runner);

            context.Store(_application);
        }
Exemple #7
0
 public HelloWorldFixture()
 {
     _remoteGraph = new RemoteBehaviorGraph("http://localhost/helloworld");
 }
Exemple #8
0
        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));
        }