public static void AssemblyInit(TestContext context)
        {
            // Initalization code goes here
            TestServerFixture = new MyTestServerFixture();
            var endpoint = BuildGraphQLEndpoint();

            GraphQLClientOptions = new GraphQL.Client.GraphQLClientOptions()
            {
                HttpMessageHandler = TestServerFixture.MessageHandler,
                EndPoint           = endpoint.Uri
            };
        }
 public ControllerTestHelper(ITestServerFixture server)
 {
     _server = server;
 }
Beispiel #3
0
 public static void IntializeClass(TestContext testContext)
 {
     _fixture = TestServerContainer.TestServerFixture;
     _graphQLClientOptions = TestServerContainer.GraphQLClientOptions;
 }
Beispiel #4
0
 public static void AssemblyInit(TestContext context)
 {
     // Initalization code goes here
     TestServerFixture = new MyTestServerFixture();
 }
Beispiel #5
0
 public static void IntializeClass(TestContext testContext)
 {
     _fixture = TestServerContainer.TestServerFixture;
 }