public void Problem065_ISBN_Validator_Test_1() { bool isIsbn = Problem065.ISBNValidator("0-7475-3269-9"); Assert.True(isIsbn); }
public void Problem065_ISBN_Validator_Test_4() { bool isIsbn = Problem065.ISBNValidator("--7475-3269-9"); Assert.False(isIsbn); }
public void Problem065_ISBN_Validator_Test_5() { bool isIsbn = Problem065.ISBNValidator(""); Assert.False(isIsbn); }
public void Problem065_ISBN_Validator_Test_2() { bool isIsbn = Problem065.ISBNValidator("156881111X"); Assert.True(isIsbn); }