Пример #1
0
 /// <summary>
 /// The test suite constructor is visible to XUnit and runs once per test.
 /// </summary>
 /// <param name="fixture"></param>
 /// <param name="fakeDataFixture"></param>
 public RavenDbDebuggingTests(IntegrationTestServerFixture fixture, DataProviderFixture fakeDataFixture, DatabaseConsistentStateFixture db)
 {
     this._sharedTestServerFixture = fixture;
     this._fakeDataFixture         = fakeDataFixture;
     this._db = db;
 }
Пример #2
0
 public VersioningTests(IntegrationTestServerFixture fixture)//runs once per unit test
 {
     this._sharedTestServerFixture = fixture;
     _client             = new HttpClient();
     _client.BaseAddress = HostingUri;
 }
 // Constructor runs once per unit test
 public QueryHandlerOutageTests(IntegrationTestServerFixture fixture, DataProviderFixture fakeDataFixture, DatabaseConsistentStateFixture db)
 {
     this._sharedTestServerFixture = fixture;
     this._fakeDataFixture         = fakeDataFixture;
     this._db = db;
 }
Пример #4
0
 /// <summary>
 /// The test suite constructor is visible to XUnit and runs once per test.
 /// </summary>
 /// <param name="fixture"></param>
 /// <param name="fakeDataFixture"></param>
 public CardTemplateQueryTests(IntegrationTestServerFixture fixture, DataProviderFixture fakeDataFixture, DatabaseConsistentStateFixture db)
 {
     this._sharedTestServerFixture = fixture;
     this._fakeDataFixture         = fakeDataFixture;
     this._db = db;
 }
Пример #5
0
 /// <summary>
 /// The test suite constructor is visible to XUnit and runs once per test.
 /// </summary>
 /// <param name="fixture"></param>
 /// <param name="fakeDataFixture"></param>
 public DeckCommandTests(IntegrationTestServerFixture fixture, DataProviderFixture fakeDataFixture, DatabaseConsistentStateFixture db)
 {
     this._integrationTestServerFixture = fixture;
     this._fakeDataFixture = fakeDataFixture;
     this._db = db;
 }
Пример #6
0
 public AcceptHeaderTests(IntegrationTestServerFixture fixture)//runs once per unit test
 {
     this._sharedTestServerFixture = fixture;
 }