public void CanGetAndSetAge(int TestAge, double TestWeight, string TestName) { //Arrange OOP9.Person ps = new OOP9.Person(); //Act //Assert }
public int CannotSetNegativeAge(int TestAge) { OOP9.Person ps = new OOP9.Person(); return(ps.Age = TestAge); }