We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be8ba8 commit 64bf370Copy full SHA for 64bf370
tests/wpunit/ModelTest.php
@@ -294,6 +294,8 @@ public function testIsSet(): void {
294
* @since 2.0.0
295
*/
296
public function testFromDataShouldCreateInstanceWithCorrectTypes(): void {
297
+ self::markTestSkipped( 'This is not finished yet.' );
298
+
299
$model = MockModel::fromData( [
300
'id' => '1',
301
'firstName' => 'Bill',
@@ -315,6 +317,8 @@ public function testFromDataShouldCreateInstanceWithCorrectTypes(): void {
315
317
316
318
319
public function testFromDataShouldThrowExceptionForNonPrimitiveTypes(): void {
320
321
322
$this->expectException( Config::getInvalidArgumentException() );
323
324
MockModel::fromData( [
0 commit comments