public StaticCollectionTests(
     IntegrationTestFixture fixture,
     Type testClassType,
     bool isPartitionedLeaseCollection) :
     base(fixture, testClassType, isPartitionedLeaseCollection: isPartitionedLeaseCollection)
 {
 }
        public IntegrationTest(IntegrationTestFixture fixture, Type testClassType, bool isPartitionedCollection = true)
        {
            this.fixture = fixture;
            if (!this.fixture.testClasses.ContainsKey(testClassType.Name))
            {
                this.fixture.testClasses[testClassType.Name] = new TestClassData(GetTestCount(testClassType), isPartitionedCollection);
            }

            TestInitializeAsync().Wait();
        }
Ejemplo n.º 3
0
 public StaticFixedLeaseCollectionTests(IntegrationTestFixture fixture) :
     base(fixture, typeof(StaticFixedLeaseCollectionTests), false)
 {
 }
 public StaticPartitionedLeaseCollectionTests(IntegrationTestFixture fixture) :
     base(fixture, typeof(StaticPartitionedLeaseCollectionTests), true)
 {
 }
Ejemplo n.º 5
0
 public StaticCollectionTests(IntegrationTestFixture fixture) : base(fixture, typeof(StaticCollectionTests))
 {
 }
 public EstimatorTests(IntegrationTestFixture fixture) : base(fixture, typeof(EstimatorTests), false)
 {
 }
 public DynamicCollectionTests(IntegrationTestFixture fixture) : base(fixture, typeof(DynamicCollectionTests))
 {
 }