NsplTest\ArgsTest::testDeprecatedExpectsString_Negative PHP Method

testDeprecatedExpectsString_Negative() public method

    public function testDeprecatedExpectsString_Negative()
    {
        function deprecatedExpectsStringNegativeTest($arg1, $arg2)
        {
            expectsString($arg2, 2);
        }
        $this->assertNull(deprecatedExpectsStringNegativeTest(42, 42));
    }
ArgsTest