Home | History | Annotate | Download | only in customization

Lines Matching defs:Car

341         Car car = new Car();
344 person.drive(car);
349 then(person).should(inOrder).drive(car);
355 Car car = new Car();
359 person.drive(car);
360 person.drive(car);
361 police.chase(car);
364 then(person).should(inOrder, times(2)).drive(car);
365 then(police).should(inOrder).chase(car);
373 void drive(Car car) {
381 static class Car {
387 void chase(Car car) {