How to use perform method of org.jmock.test.unit.internal.InvocationExpectationTests class

Best Jmock-library code snippet using org.jmock.test.unit.internal.InvocationExpectationTests.perform

Source:InvocationExpectationTests.java Github

copy

Full Screen

...136 137 Invocation invocation = new Invocation("targetObject", methodFactory.newMethod("method"));138 expectation.invoke(invocation);139 140 assertTrue("side effect 1 should have been performed", sideEffect1.wasPerformed);141 assertTrue("side effect 2 should have been performed", sideEffect2.wasPerformed);142 }143 144 public void testDescriptionIncludesSideEffects() {145 FakeSideEffect sideEffect1 = new FakeSideEffect();146 FakeSideEffect sideEffect2 = new FakeSideEffect();147 148 sideEffect1.descriptionText = "side-effect-1";149 sideEffect2.descriptionText = "side-effect-2";150 151 expectation.addSideEffect(sideEffect1);152 expectation.addSideEffect(sideEffect2);153 154 String description = StringDescription.toString(expectation);155 156 AssertThat.stringIncludes("should include description of sideEffect1",157 sideEffect1.descriptionText, description);158 AssertThat.stringIncludes("should include description of sideEffect2",159 sideEffect2.descriptionText, description);160 161 }162 163 public void testReturnsNullIfHasNoActionsWhenInvoked() throws Throwable {164 Invocation invocation = new Invocation(targetObject, method, Invocation.NO_PARAMETERS);165 166 Object actualResult = expectation.invoke(invocation);167 168 assertNull("should have returned null", actualResult);169 }170 171 public void testFailsIfActionReturnsAnIncompatibleValue() throws Throwable {172 final Method stringReturningMethod = methodFactory.newMethod("tester", new Class[0], String.class, new Class[0]);173 Invocation invocation = new Invocation(targetObject, stringReturningMethod, Invocation.NO_PARAMETERS);174 ReturnValueAction action = new ReturnValueAction(new Integer(666));175 expectation.setAction(action);176 177 try {178 expectation.invoke(invocation);179 fail("Should have thrown an IllegalStateException");180 } catch (IllegalStateException expected) {181 AssertThat.stringIncludes("Shows returned type", "java.lang.Integer", expected.getMessage());182 AssertThat.stringIncludes("Shows expected return type", "java.lang.String", expected.getMessage());183 }184 }185 186 /**187 * @see CardinalityTests.testHasARequiredAndMaximumNumberOfExpectedInvocations188 */189 public void testHasARequiredAndMaximumNumberOfExpectedInvocations() throws Throwable {190 Invocation invocation = new Invocation(targetObject, method, Invocation.NO_PARAMETERS);191 192 expectation.setCardinality(new Cardinality(1, 1));193 194 assertTrue(expectation.allowsMoreInvocations());195 assertFalse(expectation.isSatisfied());196 197 expectation.invoke(invocation);198 expectation.invoke(invocation);199 200 assertFalse(expectation.allowsMoreInvocations());201 assertTrue(expectation.isSatisfied());202 }203 204 public void testMatchesIfAllOrderingConstraintsMatch() {205 FakeOrderingConstraint orderingConstraint1 = new FakeOrderingConstraint();206 FakeOrderingConstraint orderingConstraint2 = new FakeOrderingConstraint();207 208 expectation.addOrderingConstraint(orderingConstraint1);209 expectation.addOrderingConstraint(orderingConstraint2);210 211 Invocation invocation = new Invocation(targetObject, method, Invocation.NO_PARAMETERS);212 213 orderingConstraint1.allowsInvocationNow = true;214 orderingConstraint2.allowsInvocationNow = true;215 assertTrue(expectation.matches(invocation));216 217 orderingConstraint1.allowsInvocationNow = true;218 orderingConstraint2.allowsInvocationNow = false;219 assertFalse(expectation.matches(invocation));220 221 orderingConstraint1.allowsInvocationNow = false;222 orderingConstraint2.allowsInvocationNow = true;223 assertFalse(expectation.matches(invocation));224 225 orderingConstraint1.allowsInvocationNow = false;226 orderingConstraint2.allowsInvocationNow = false;227 assertFalse(expectation.matches(invocation));228 }229 230 public void testDescriptionIncludesCardinality() {231 final Cardinality cardinality = new Cardinality(2, 2);232 expectation.setCardinality(cardinality);233 234 AssertThat.stringIncludes("should include cardinality description",235 StringDescription.toString(cardinality), 236 StringDescription.toString(expectation));237 }238 239 public void testDescribesNumberOfInvocationsReceived() throws Throwable {240 Invocation invocation = new Invocation(targetObject, method, Invocation.NO_PARAMETERS);241 242 expectation.setCardinality(new Cardinality(2,3));243 244 AssertThat.stringIncludes("should describe as not invoked",245 "never invoked", StringDescription.toString(expectation));246 247 expectation.invoke(invocation);248 AssertThat.stringIncludes("should describe as not invoked",249 "invoked 1 time", StringDescription.toString(expectation));250 251 expectation.invoke(invocation);252 expectation.invoke(invocation);253 AssertThat.stringIncludes("should describe as not invoked",254 "invoked 3 times", StringDescription.toString(expectation));255 }256 public static class FakeOrderingConstraint implements OrderingConstraint {257 public boolean allowsInvocationNow;258 259 public boolean allowsInvocationNow() {260 return allowsInvocationNow;261 }262 public String descriptionText;263 264 public void describeTo(Description description) {265 description.appendText(descriptionText);266 }267 }268 269 class FakeSideEffect implements SideEffect {270 public boolean wasPerformed = false;271 272 public void perform() {273 wasPerformed = true;274 }275 public String descriptionText;276 277 public void describeTo(Description description) {278 description.appendText(descriptionText);279 }280 }281}...

Full Screen

Full Screen

perform

Using AI Code Generation

copy

Full Screen

1import org.jmock.test.unit.internal.InvocationExpectationTests2import org.jmock.internal.InvocationExpectation3import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper4import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory5import org.jmock.internal.InvocationExpectation6import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper7import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory8import org.jmock.internal.InvocationExpectation9import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper10import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory11import org.jmock.internal.InvocationExpectation12import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper13import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory14import org.jmock.internal.InvocationExpectation15import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper16import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory17import org.jmock.internal.InvocationExpectation18import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper19import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory20import org.jmock.internal.InvocationExpectation21import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper22import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory23import org.jmock.internal.InvocationExpectation24import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper25import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper.InvocationExpectationTestHelperFactory26import org.jmock.internal.InvocationExpectation27import org.jmock.test.unit.internal.InvocationExpectationTests.InvocationExpectationTestHelper

Full Screen

Full Screen

perform

Using AI Code Generation

copy

Full Screen

1assertThat(result, is(notNullValue()))2assertThat(result, is(instanceOf(org.jmock.internal.InvocationExpectation.class)))3import org.jmock.test.unit.internal.InvocationExpectationTests4import org.jmock.internal.InvocationExpectation5import org.jmock.internal.InvocationExpectation6def invocationExpectationTests = new InvocationExpectationTests()7def result = invocationExpectationTests.perform()8assertThat(result, is(notNullValue()))9assertThat(result, is(instanceOf(org.jmock.internal.InvocationExpectation.class)))10import org.jmock.test.unit.internal.InvocationExpectationTests11import org.jmock.internal.InvocationExpectation12import org.jmock.internal.InvocationExpectation13def invocationExpectationTests = new InvocationExpectationTests()14def result = invocationExpectationTests.perform()15assertThat(result, is(notNullValue()))16assertThat(result, is(instanceOf(org.jmock.internal.InvocationExpectation.class)))17import org.jmock.test.unit.internal.InvocationExpectationTests18import org.jmock.internal.InvocationExpectation19import org.jmock.internal.InvocationExpectation20def invocationExpectationTests = new InvocationExpectationTests()21def result = invocationExpectationTests.perform()22assertThat(result, is(notNullValue()))23assertThat(result, is(instanceOf(org.jmock.internal.InvocationExpectation.class)))24import org.jmock.test.unit

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful