public void TestGoodCountryCode() { var testCompany = new Learning.Company("company", 12, "Fr"); Assert.AreEqual("FR", testCompany.CountryCode); Console.WriteLine(testCompany.CountryCode); }
public void TestSpaceInCountryCode() { var testCompany = new Learning.Company("company", 12, " "); }
public void TestSpecialsInCountryCode() { var testCompany = new Learning.Company("company", 12, "*&"); }
public void TestNumsInCountryCode() { var testCompany = new Learning.Company("company", 12, "99"); }
public void TestWrongCountryCode() { var testCompany = new Learning.Company("company", 12, "France"); Console.WriteLine(testCompany.CountryCode); }