Exemplo n.º 1
0
        public PackagingFixture(RemoteBehaviorGraph remoteGraph, CommandRunner runner)
        {
            _remoteGraph = remoteGraph;
            _runner = runner;

            this["SetUp"] = Embed<PackagingSetupFixture>("If the packaging setup is");
        }
Exemplo n.º 2
0
        public Package1Fixture(RemoteBehaviorGraph remoteGraph, ApplicationDriver application)
        {
            _remoteGraph = remoteGraph;
            _application = application;

            Title = "For TestPackage1 (Assembly 'TestPackage1')";
        }
Exemplo n.º 3
0
        public Package1Fixture(RemoteBehaviorGraph remoteGraph, NavigationDriver navigation)
        {
            _remoteGraph = remoteGraph;
            _navigation = navigation;

            Title = "For TestPackage1 (Assembly 'TestPackage1')";
        }
Exemplo n.º 4
0
        public override void RegisterServices(ITestContext context)
        {
            base.RegisterServices(context);
            var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT);
            context.Store(remoteGraph);

            context.Store(_runner);
        }
Exemplo n.º 5
0
        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");
        }
Exemplo n.º 6
0
        public void RegisterServices(ITestContext context)
        {
            var remoteGraph = new RemoteBehaviorGraph(TEST_APPLICATION_ROOT);
            context.Store(remoteGraph);

            context.Store(_runner);

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