コード例 #1
0
        public void ReadUnsetOptionsWithDefaultValueTest()
        {
            var provider = new FileConfigurationProvider(CONFIG_FILE_NAME);
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunReadUnsetOptionsWithDefaultValueTest();
        }
コード例 #2
0
        public void BasicSetGetTest()
        {
            var provider = new MemoryConfigurationProvider();
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunBasicSetGetTest();
        }
コード例 #3
0
        public void BulkSetGetTest()
        {
            var provider = new FileConfigurationProvider(CONFIG_FILE_NAME);
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunBulkSetGetTest();
        }
コード例 #4
0
        public void ReadUnsetOptionsWithDefaultValueTest()
        {
            var provider = new MemoryConfigurationProvider();
            CommonTestRunner commonTests = new CommonTestRunner(provider);

            commonTests.RunReadUnsetOptionsWithDefaultValueTest();
        }