|
EasyMock example source code file (UsageTest.java)
The EasyMock UsageTest.java source code
/*
* Copyright (c) 2001-2007 OFFIS, Tammo Freese.
* This program is made available under the terms of the MIT License.
*/
package org.easymock.tests;
import static org.junit.Assert.*;
import org.easymock.MockControl;
import org.junit.Before;
import org.junit.Test;
public class UsageTest {
MockControl<IMethods> control;
IMethods mock;
@Before
public void setup() {
control = MockControl.createControl(IMethods.class);
mock = control.getMock();
}
@Test
public void exactCallCountByLastCall() {
mock.oneArg(false);
control.setReturnValue("Test");
control.setReturnValue("Test2");
control.replay();
assertEquals("Test", mock.oneArg(false));
assertEquals("Test2", mock.oneArg(false));
boolean failed = false;
try {
mock.oneArg(false);
} catch (AssertionError expected) {
failed = true;
}
if (!failed)
fail("expected AssertionError");
}
@Test
public void openCallCountByLastCall() {
mock.oneArg(false);
control.setReturnValue("Test");
control.setReturnValue("Test2", MockControl.ONE_OR_MORE);
control.replay();
assertEquals("Test", mock.oneArg(false));
assertEquals("Test2", mock.oneArg(false));
assertEquals("Test2", mock.oneArg(false));
}
@Test
public void exactCallCountByLastThrowable() {
mock.oneArg(false);
control.setReturnValue("Test");
control.setReturnValue("Test2");
control.setThrowable(new IndexOutOfBoundsException(), 1);
control.replay();
assertEquals("Test", mock.oneArg(false));
assertEquals("Test2", mock.oneArg(false));
try {
mock.oneArg(false);
} catch (IndexOutOfBoundsException expected) {
}
boolean failed = true;
try {
try {
mock.oneArg(false);
} catch (IndexOutOfBoundsException expected) {
}
failed = false;
} catch (AssertionError expected) {
}
if (!failed)
fail("expected AssertionError");
}
@Test
public void openCallCountByLastThrowable() {
mock.oneArg(false);
control.setReturnValue("Test");
control.setReturnValue("Test2");
control.setThrowable(new IndexOutOfBoundsException(),
MockControl.ONE_OR_MORE);
control.replay();
assertEquals("Test", mock.oneArg(false));
assertEquals("Test2", mock.oneArg(false));
try {
mock.oneArg(false);
} catch (IndexOutOfBoundsException expected) {
}
try {
mock.oneArg(false);
} catch (IndexOutOfBoundsException expected) {
}
}
@Test
public void moreThanOneArgument() {
mock.threeArgumentMethod(1, "2", "3");
control.setReturnValue("Test", 2);
control.replay();
assertEquals("Test", mock.threeArgumentMethod(1, "2", "3"));
boolean failed = true;
try {
control.verify();
failed = false;
} catch (AssertionError expected) {
assertEquals(
"\n Expectation failure on verify:"
+ "\n threeArgumentMethod(1, \"2\", \"3\"): expected: 2, actual: 1",
expected.getMessage());
}
if (!failed) {
fail("exception expected");
}
}
@Test
public void unexpectedCallWithArray() {
control.reset();
control.setDefaultMatcher(MockControl.ARRAY_MATCHER);
control.replay();
boolean failed = false;
String[] strings = new String[] { "Test" };
try {
mock.arrayMethod(strings);
} catch (AssertionError expected) {
failed = true;
assertEquals("\n Unexpected method call arrayMethod("
+ strings.toString() + "):", expected.getMessage());
}
if (!failed) {
fail("exception expected");
}
}
@Test
public void wrongArguments() {
mock.simpleMethodWithArgument("3");
control.replay();
try {
mock.simpleMethodWithArgument("5");
fail();
} catch (AssertionError expected) {
assertEquals(
"\n Unexpected method call simpleMethodWithArgument(\"5\"):"
+ "\n simpleMethodWithArgument(\"3\"): expected: 1, actual: 0",
expected.getMessage());
}
}
@Test
public void summarizeSameObjectArguments() {
mock.simpleMethodWithArgument("3");
mock.simpleMethodWithArgument("3");
control.replay();
try {
mock.simpleMethodWithArgument("5");
fail();
} catch (AssertionError expected) {
assertEquals(
"\n Unexpected method call simpleMethodWithArgument(\"5\"):"
+ "\n simpleMethodWithArgument(\"3\"): expected: 2, actual: 0",
expected.getMessage());
}
}
@Test
public void argumentsOrdered() {
mock.simpleMethodWithArgument("4");
mock.simpleMethodWithArgument("3");
mock.simpleMethodWithArgument("2");
mock.simpleMethodWithArgument("0");
mock.simpleMethodWithArgument("1");
control.replay();
try {
mock.simpleMethodWithArgument("5");
fail();
} catch (AssertionError expected) {
assertEquals(
"\n Unexpected method call simpleMethodWithArgument(\"5\"):"
+ "\n simpleMethodWithArgument(\"4\"): expected: 1, actual: 0"
+ "\n simpleMethodWithArgument(\"3\"): expected: 1, actual: 0"
+ "\n simpleMethodWithArgument(\"2\"): expected: 1, actual: 0"
+ "\n simpleMethodWithArgument(\"0\"): expected: 1, actual: 0"
+ "\n simpleMethodWithArgument(\"1\"): expected: 1, actual: 0",
expected.getMessage());
}
}
}
Other EasyMock examples (source code examples)Here is a short list of links related to this EasyMock UsageTest.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.