예제 #1
0
/**
 * Test if the given object is an instance of the given class
 *
 * @param string $className
 * @param mixed  $actual
 * @param string $message
 * @throws \Cundd\TestFlight\Exception\AssertionError
 */
function test_flight_assert_instance_of(string $className, $actual, string $message = '')
{
    \Cundd\TestFlight\Assert::assertInstanceOf($className, $actual, $message);
}