@@ -37,6 +37,7 @@ public function testFindManyCourses()
3737
3838 $ this ->assertInstanceOf (Course::class, $ courses [0 ]);
3939 $ this ->assertSame ('Baking for dummies ' , $ courses [0 ]->name );
40+ $ this ->assertFalse ($ courses [0 ]->hasChanged ());
4041 }
4142
4243 public function testFindAllManyCourses ()
@@ -51,6 +52,7 @@ public function testFindAllManyCourses()
5152
5253 $ this ->assertInstanceOf (Course::class, $ courses [0 ]);
5354 $ this ->assertSame ('PHP is not death ' , $ courses [0 ]->name );
55+ $ this ->assertFalse ($ courses [0 ]->hasChanged ());
5456 }
5557
5658 public function testFindManyStudents ()
@@ -67,6 +69,7 @@ public function testFindManyStudents()
6769
6870 $ this ->assertInstanceOf (Student::class, $ students [0 ]);
6971 $ this ->assertSame ('Joe ' , $ students [0 ]->firstname );
72+ $ this ->assertFalse ($ students [0 ]->hasChanged ());
7073 }
7174
7275 public function testFindAllManyStudents ()
@@ -81,5 +84,6 @@ public function testFindAllManyStudents()
8184
8285 $ this ->assertInstanceOf (Student::class, $ students [1 ]);
8386 $ this ->assertSame ('Elizabeth ' , $ students [1 ]->firstname );
87+ $ this ->assertFalse ($ students [0 ]->hasChanged ());
8488 }
8589}
0 commit comments