public toggles_controller_should(ServerFixture serverFixture)
 {
     _fixture = serverFixture ?? throw new ArgumentNullException(nameof(serverFixture));
 }
Exemple #2
0
 public esquio_http_store_should(ServerFixture serverFixture)
 {
     _fixture = serverFixture ?? throw new ArgumentNullException(nameof(serverFixture));
 }
Exemple #3
0
 public TestServerHttpClientFactory(ServerFixture fixture, string apiKey)
 {
     _fixture = fixture;
     _apiKey  = apiKey;
 }
 public BaseTest(IWebDriver aWebDriver, ServerFixture aServerFixture)
 {
     WebDriver          = aWebDriver;
     ServerFixture      = aServerFixture;
     JavaScriptExecutor = WebDriver as IJavaScriptExecutor;
 }
Exemple #5
0
 public api_versioning_should(ServerFixture serverFixture)
 {
     _fixture = serverFixture ?? throw new ArgumentNullException(nameof(serverFixture));
 }
Exemple #6
0
 public esquio_middleware_should(ServerFixture fixture)
 {
     _fixture = fixture ?? throw new ArgumentNullException(nameof(fixture));
 }
 public RolRepositoryTest(ServerFixture serverFixture)
 {
     _serverFixture = serverFixture;
 }
 public override void Before(MethodInfo methodUnderTest)
 {
     ServerFixture.ResetDatabase();
 }
 public ClientTest(IWebDriver browser, ServerFixture server)
 {
     Browser = browser ?? throw new ArgumentNullException(nameof(browser));
     Server  = server ?? throw new ArgumentNullException(nameof(server));
 }
Exemple #10
0
 public RoutingTest(BrowserFixture browserFixture, DevHostServerFixture <Program> serverFixture)
     : base(browserFixture, serverFixture)
 {
     _server = serverFixture;
     Navigate(ServerPathBase, noReload: true);
 }
 public TestControllerApi(ServerFixture <Startup> serverFixture)
 {
     _serverFixture = serverFixture;
     _libraryScope  = _serverFixture.GetService <LibraryDbScope>();
 }
 public AutoMapperTests(ServerFixture serverFixture) : base(serverFixture)
 {
 }