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

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

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