示例#1
0
        public void GetValue_NonExistingProperty()
        {
            var entry = new IniEntry();

            ExceptionTester.CallMethodAndExpectException <PropertyNotRegisteredException>(() => entry.GetValue <string>("Non-existing property"));
        }
示例#2
0
        public void GetValue_Null()
        {
            var entry = new IniEntry();

            ExceptionTester.CallMethodAndExpectException <ArgumentException>(() => entry.GetValue <string>(null));
        }