public void GetValue_NonExistingProperty() { var entry = new IniEntry(); ExceptionTester.CallMethodAndExpectException <PropertyNotRegisteredException>(() => entry.GetValue <string>("Non-existing property")); }
public void GetValue_Null() { var entry = new IniEntry(); ExceptionTester.CallMethodAndExpectException <ArgumentException>(() => entry.GetValue <string>(null)); }