public function testInvokeArgsForInvokedObject()
 {
     $reflectedCallable = new CallableReflection($this->getInvokedObject());
     $this->assertSame(array(1, 2), $reflectedCallable->invokeArgs(array('b' => 1, 'a' => 2)));
 }