public void TestArgumentNoExistFilePathCheck() { try { ImageConverterLogic.FlipHorizontal(@"C:\hogehoge.png"); } catch (FileNotFoundException) { return; } Assert.Fail("Exceptionが発生しなかった"); }
public void TestArgumentNullCheck() { try { ImageConverterLogic.FlipHorizontal(null); } catch (NullReferenceException) { return; } Assert.Fail("Exceptionが発生しなかった"); }