Searched refs:IFoo (Results 1 – 3 of 3) sorted by relevance
23 interface IFoo {} interface in MockingMultipleInterfacesTest29 Foo mock = mock(Foo.class, withSettings().extraInterfaces(IFoo.class, IBar.class)); in should_allow_multiple_interfaces()32 assertThat(mock).isInstanceOf(IFoo.class); in should_allow_multiple_interfaces()40 mock(Foo.class, withSettings().extraInterfaces(IFoo.class, null)); in should_scream_when_null_passed_instead_of_an_interface()
110 IFoo = interface(IANTLRInterface) interface117 TFoo = class(TANTLRObject, ICloneable, IFoo)136 Foo: IFoo;191 Foo: IFoo;208 Check(Supports(ReturnValue, IFoo));209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value);
428 bind(IFoo.class).toConstructor(constructor); in testInterfaceToImplementationConstructor()432 injector.getInstance(IFoo.class); in testInterfaceToImplementationConstructor()435 public static interface IFoo {} interface in BindingTest436 public static class CFoo implements IFoo {}