Home
last modified time | relevance | path

Searched refs:IFoo (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/basicapi/
DMockingMultipleInterfacesTest.java23 interface IFoo {} interface in MockingMultipleInterfacesTest
29 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()
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tools.Tests.pas110 IFoo = interface(IANTLRInterface) interface
117 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);
/external/guice/core/test/com/google/inject/
DBindingTest.java428 bind(IFoo.class).toConstructor(constructor); in testInterfaceToImplementationConstructor()
432 injector.getInstance(IFoo.class); in testInterfaceToImplementationConstructor()
435 public static interface IFoo {} interface in BindingTest
436 public static class CFoo implements IFoo {}