Пример #1
0
 function test_getSpeciality()
 {
     //Arrange
     $name = "Barb";
     $phone = "5039885678";
     $specialty = "Women";
     $weekends = true;
     $test_stylist = new Stylist($name, $phone, $specialty, $weekends);
     //Act
     $result = $test_stylist->getSpecialty();
     //Assert
     $this->assertEquals($specialty, $result);
 }