22232425262728
protected final TheStyleAssertion the; public JMockitExpectations() { super(); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }
28293031323334
} public JMockitExpectations(int numberOfIterations, Object... classesOrObjectsToBePartiallyMocked) { super(numberOfIterations, classesOrObjectsToBePartiallyMocked); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }
34353637383940
} public JMockitExpectations(Object... classesOrObjectsToBePartiallyMocked) { super(classesOrObjectsToBePartiallyMocked); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }
23242526272829
protected final TheStyleAssertion the; public JMockitNonStrictExpectations() { super(); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }
29303132333435
} public JMockitNonStrictExpectations(int numberOfIterations, Object... classesOrObjectsToBePartiallyMocked) { super(numberOfIterations, classesOrObjectsToBePartiallyMocked); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }
35363738394041
} public JMockitNonStrictExpectations(Object... classesOrObjectsToBePartiallyMocked) { super(classesOrObjectsToBePartiallyMocked); ExpectationsUtil.register(this); this.the = new TheStyleAssertion(); }