NsplTest\ArgsTest::testDeprecatedExpectWithMethods_Negative PHP Method

testDeprecatedExpectWithMethods_Negative() public method

    public function testDeprecatedExpectWithMethods_Negative()
    {
        function deprecatedExpectsWithMethodsNegativeTest($arg1)
        {
            expectsWithMethods($arg1, ['testMethod1', 'test_Method_2']);
        }
        $this->assertNull(deprecatedExpectsWithMethodsNegativeTest(new TestClass1()));
    }
ArgsTest