NsplTest\ArgsTest::testExpectsWithKeys_Negative PHP Method

testExpectsWithKeys_Negative() public method

    public function testExpectsWithKeys_Negative()
    {
        function expectsWithKeysNegativeTest($arg1)
        {
            expects(withKeys('hello', 'answer'), $arg1);
        }
        $this->assertNull(expectsWithKeysNegativeTest(array('hello' => 'world')));
    }
ArgsTest