Example #1
0
File: Tests.cs Project: joalra/oom
 public void CannotCreateGolfPlayerWithEmptyName()
 {
     Assert.Catch(() =>
     {
         var x = new GolfPlayer("", "", 0);
     });
 }
Example #2
0
File: Tests.cs Project: joalra/oom
        public void GolfPlayerNameReturnsSameValueUsedForInitialization()
        {
            var x = new GolfPlayer("Test Player", "", 0);

            Assert.IsTrue(x.Name == "Test Player");
        }