function testArgumentsInSequence()
 {
     $mock = new MockDummy();
     $mock->expectAt(0, 'aMethod', array(1, 2));
     $mock->expectAt(1, 'aMethod', array(3, 4));
     $mock->aMethod(1, 2);
     $mock->aMethod(3, 4);
 }