File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -49,5 +49,7 @@ public function testCanBeInstantiatedUsingDeprecatedFqsen() : void
49
49
$ false = new \phpDocumentor \Reflection \Types \False_ ();
50
50
51
51
$ this ->assertSame ('false ' , (string ) $ false );
52
+ $ this ->assertInstanceOf (False_::class, $ false );
53
+ $ this ->assertInstanceOf (\phpDocumentor \Reflection \Types \False_::class, $ false );
52
54
}
53
55
}
Original file line number Diff line number Diff line change @@ -49,5 +49,7 @@ public function testCanBeInstantiatedUsingDeprecatedFqsen() : void
49
49
$ true = new \phpDocumentor \Reflection \Types \True_ ();
50
50
51
51
$ this ->assertSame ('true ' , (string ) $ true );
52
+ $ this ->assertInstanceOf (True_::class, $ true );
53
+ $ this ->assertInstanceOf (\phpDocumentor \Reflection \Types \True_::class, $ true );
52
54
}
53
55
}
You can’t perform that action at this time.
0 commit comments