Skip to content

Commit 64bf370

Browse files
committed
test: marks tests as skipped for now
1 parent 7be8ba8 commit 64bf370

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/wpunit/ModelTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ public function testIsSet(): void {
294294
* @since 2.0.0
295295
*/
296296
public function testFromDataShouldCreateInstanceWithCorrectTypes(): void {
297+
self::markTestSkipped( 'This is not finished yet.' );
298+
297299
$model = MockModel::fromData( [
298300
'id' => '1',
299301
'firstName' => 'Bill',
@@ -315,6 +317,8 @@ public function testFromDataShouldCreateInstanceWithCorrectTypes(): void {
315317
* @since 2.0.0
316318
*/
317319
public function testFromDataShouldThrowExceptionForNonPrimitiveTypes(): void {
320+
self::markTestSkipped( 'This is not finished yet.' );
321+
318322
$this->expectException( Config::getInvalidArgumentException() );
319323

320324
MockModel::fromData( [

0 commit comments

Comments
 (0)