Exemplo n.º 1
0
        public void ReadUnsetOptionsWithDefaultValueTest()
        {
            var provider = new FileConfigurationProvider(CONFIG_FILE_NAME);
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunReadUnsetOptionsWithDefaultValueTest();
        }
Exemplo n.º 2
0
        public void BasicSetGetTest()
        {
            var provider = new MemoryConfigurationProvider();
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunBasicSetGetTest();
        }
Exemplo n.º 3
0
        public void BulkSetGetTest()
        {
            var provider = new FileConfigurationProvider(CONFIG_FILE_NAME);
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunBulkSetGetTest();
        }
Exemplo n.º 4
0
        public void ReadUnsetOptionsWithDefaultValueTest()
        {
            var provider = new MemoryConfigurationProvider();
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunReadUnsetOptionsWithDefaultValueTest();
        }