We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b974829 commit 32b6f99Copy full SHA for 32b6f99
tests/Entity/StudentTest.php
@@ -130,4 +130,19 @@ public function testStud08Numero(): void
130
);
131
}
132
133
+ /**
134
+ * @return void
135
+ * CODE STUD09
136
+ */
137
+ public function testStud09Id(): void
138
+ {
139
+ $student = new \Studoo\Entity\Student();
140
+ $student->setId("2356542FT543546743F4325");
141
+
142
+ $this->assertSame(
143
+ "2356542FT543546743F4325",
144
+ $student->getId()
145
+ );
146
+ }
147
148
0 commit comments