Skip to content

Commit 861355d

Browse files
committed
Kill mutants
1 parent 41fd6e0 commit 861355d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/formdata/FormDataTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ class FormDataTest extends TestCase {
1515
public function testCanBeInstantiatedWithUsableData(array $data): void {
1616
$formdata = new FormData('foo', $data);
1717
$this->assertInstanceOf(FormData::class, $formdata);
18+
19+
foreach($data as $name => $value) {
20+
$this->assertTrue($formdata->hasKey($name));
21+
$this->assertEquals($value, $formdata->getValue($name));
22+
}
1823
}
1924

2025
public static function validDataProvider(): array {

0 commit comments

Comments
 (0)