public function testAssertArrayAccessWithStandardClass()
 {
     $this->setExpectedException('Functional\\Exceptions\\InvalidArgumentException', 'func() expects parameter 2 to be array or instance of ArrayAccess');
     InvalidArgumentException::assertArrayAccess(new \stdClass(), "func", 2);
 }