Skip to content

Commit

Permalink
#75 #in_progress #comment testing id student
Browse files Browse the repository at this point in the history
  • Loading branch information
bfoujols committed Sep 3, 2022
1 parent b974829 commit 32b6f99
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/Entity/StudentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,19 @@ public function testStud08Numero(): void
);
}

/**
* @return void
* CODE STUD09
*/
public function testStud09Id(): void
{
$student = new \Studoo\Entity\Student();
$student->setId("2356542FT543546743F4325");

$this->assertSame(
"2356542FT543546743F4325",
$student->getId()
);
}

}

0 comments on commit 32b6f99

Please sign in to comment.