How to use MethodNameMatcher class of org.jmock.internal.matcher package

Best Jmock-library code snippet using org.jmock.internal.matcher.MethodNameMatcher

Source:InvocationExpectationBuilder.java Github

copy

Full Screen

...7import org.jmock.Sequence;8import org.jmock.api.Action;9import org.jmock.api.Expectation;10import org.jmock.api.Invocation;11import org.jmock.internal.matcher.MethodNameMatcher;12import org.jmock.internal.matcher.MockObjectMatcher;13import org.jmock.internal.matcher.AllParametersMatcher;14import org.jmock.syntax.MethodClause;15import org.jmock.syntax.ParametersClause;16import org.jmock.syntax.ReceiverClause;17public class InvocationExpectationBuilder 18 implements ExpectationCapture, 19 ReceiverClause, MethodClause, ParametersClause20{21 private final InvocationExpectation expectation = new InvocationExpectation();22 23 private boolean isFullySpecified = false;24 private boolean needsDefaultAction = true;25 private List<Matcher<?>> capturedParameterMatchers = new ArrayList<Matcher<?>>();26 27 public Expectation toExpectation(Action defaultAction) {28 if (needsDefaultAction) {29 expectation.setDefaultAction(defaultAction);30 }31 32 return expectation;33 }34 35 public void setCardinality(Cardinality cardinality) {36 expectation.setCardinality(cardinality);37 }38 39 public void addParameterMatcher(Matcher<?> matcher) {40 capturedParameterMatchers.add(matcher);41 }42 43 public void addOrderingConstraint(OrderingConstraint constraint) {44 expectation.addOrderingConstraint(constraint);45 }46 47 public void addInSequenceOrderingConstraint(Sequence sequence) {48 sequence.constrainAsNextInSequence(expectation);49 }50 51 public void setAction(Action action) {52 expectation.setAction(action);53 needsDefaultAction = false;54 }55 56 public void addSideEffect(SideEffect sideEffect) {57 expectation.addSideEffect(sideEffect);58 }59 60 private <T> T captureExpectedObject(T mockObject) {61 if (!(mockObject instanceof CaptureControl)) {62 throw new IllegalArgumentException("can only set expectations on mock objects");63 }64 65 expectation.setObjectMatcher(new MockObjectMatcher(mockObject));66 isFullySpecified = true;67 68 Object capturingImposter = ((CaptureControl)mockObject).captureExpectationTo(this);69 70 return asMockedType(mockObject, capturingImposter);71 }72 73 // Damn you Java generics! Damn you to HELL!74 @SuppressWarnings("unchecked")75 private <T> T asMockedType(@SuppressWarnings("unused") T mockObject, 76 Object capturingImposter) 77 {78 return (T) capturingImposter;79 }80 81 public void createExpectationFrom(Invocation invocation) {82 expectation.setMethod(invocation.getInvokedMethod());83 84 if (capturedParameterMatchers.isEmpty()) {85 expectation.setParametersMatcher(new AllParametersMatcher(invocation.getParametersAsArray()));86 }87 else {88 checkParameterMatcherCount(invocation);89 expectation.setParametersMatcher(new AllParametersMatcher(capturedParameterMatchers));90 }91 }92 93 private void checkParameterMatcherCount(Invocation invocation) {94 if (capturedParameterMatchers.size() != invocation.getParameterCount()) {95 throw new IllegalArgumentException("not all parameters were given explicit matchers: either all parameters must be specified by matchers or all must be specified by values, you cannot mix matchers and values");96 }97 }98 99 public void checkWasFullySpecified() {100 if (!isFullySpecified) {101 throw new IllegalStateException("expectation was not fully specified");102 }103 }104 /* 105 * Syntactic sugar106 */107 108 public <T> T of(T mockObject) {109 return captureExpectedObject(mockObject);110 }111 public MethodClause of(Matcher<?> objectMatcher) {112 expectation.setObjectMatcher(objectMatcher);113 isFullySpecified = true;114 return this;115 }116 public ParametersClause method(Matcher<Method> methodMatcher) {117 expectation.setMethodMatcher(methodMatcher);118 return this;119 }120 121 public ParametersClause method(String nameRegex) {122 return method(new MethodNameMatcher(nameRegex));123 }124 125 public void with(Matcher<?>... parameterMatchers) {126 expectation.setParametersMatcher(new AllParametersMatcher(Arrays.asList(parameterMatchers)));127 }128 129 public void withNoArguments() {130 with();131 }132}...

Full Screen

Full Screen

Source:HamcrestTypeSafetyAcceptanceTests.java Github

copy

Full Screen

...5import junit.framework.TestCase;6import org.hamcrest.Matcher;7import org.jmock.Expectations;8import org.jmock.Mockery;9import org.jmock.internal.matcher.MethodNameMatcher;10public class HamcrestTypeSafetyAcceptanceTests extends TestCase {11 public interface MockedType {12 void m(String s);13 void m(int i);14 }15 16 Mockery context = new Mockery();17 MockedType mock = context.mock(MockedType.class, "mock");18 19 public void testMatchersCanCopeWithDifferentArgumentTypes() {20 context.checking(new Expectations() {{21 exactly(1).of (anything()).method(withName("m")).with(startsWith("x"));22 exactly(1).of (anything()).method(withName("m")).with(greaterThan(0));23 }});24 25 mock.m(1); // should not throw ClassCastException26 }27 28 Matcher<Method> withName(String nameRegex) {29 return new MethodNameMatcher(nameRegex);30 }31}...

Full Screen

Full Screen

MethodNameMatcher

Using AI Code Generation

copy

Full Screen

1package org.jmock.test.acceptance;2import org.jmock.Mock;3import org.jmock.MockObjectTestCase;4import org.jmock.core.Constraint;5import org.jmock.core.constraint.IsEqual;6import org.jmock.core.matcher.MethodNameMatcher;7import org.jmock.core.matcher.MethodNameMatcherFactory;8import org.jmock.test.acceptance.ATest;9import org.jmock.test.acceptance.ATestInterface;10public class MethodNameMatcherTest extends MockObjectTestCase {11 public void testMatchesByMethodName() {12 Mock mock = mock(ATestInterface.class, "mock");13 mock.expects(once()).method(new MethodNameMatcher("voidMethod"));14 ATestInterface test = (ATestInterface) mock.proxy();15 test.voidMethod();16 }17 public void testMatchesByMethodNameAndParameterTypes() {18 Mock mock = mock(ATestInterface.class, "mock");19 mock.expects(once()).method(new MethodNameMatcher("method", new Class[] { int.class }));20 ATestInterface test = (ATestInterface) mock.proxy();21 test.method(1);22 }23 public void testMatchesByMethodNameAndParameterTypesAndArguments() {24 Mock mock = mock(ATestInterface.class, "mock");25 mock.expects(once()).method(26 new MethodNameMatcher("method", new Class[] { int.class }, new Object[] { new Integer(1) }));27 ATestInterface test = (ATestInterface) mock.proxy();28 test.method(1);29 }30 public void testMatchesByMethodNameAndParameterTypesAndArgumentConstraints() {31 Mock mock = mock(ATestInterface.class, "mock");32 mock.expects(once()).method(33 new MethodNameMatcher("method", new Class[] { int.class }, new Constraint[] { new IsEqual(new Integer(1)) }));34 ATestInterface test = (ATestInterface) mock.proxy();35 test.method(1);36 }37 public void testMatchesByMethodNameAndArgumentConstraints() {38 Mock mock = mock(ATestInterface.class, "mock");39 mock.expects(once()).method(40 new MethodNameMatcher("method", new Constraint[] { new IsEqual(new Integer(1)) }));41 ATestInterface test = (ATestInterface) mock.proxy();42 test.method(1);43 }44 public void testMatchesByMethodNameAndArgumentConstraintsAndParameterTypes() {45 Mock mock = mock(ATestInterface.class, "mock");

Full Screen

Full Screen

MethodNameMatcher

Using AI Code Generation

copy

Full Screen

1import org.jmock.Mockery;2import org.jmock.Expectations;3import org.jmock.lib.legacy.ClassImposteriser;4import org.jmock.internal.matcher.MethodNameMatcher;5import org.jmock.api.Invocation;6class Test{7 public static void main(String[] args){8 Mockery context = new Mockery();9 context.setImposteriser(ClassImposteriser.INSTANCE);10 final TestInterface mock = context.mock(TestInterface.class);11 context.checking(new Expectations(){12 {13 oneOf(mock).testMethod(with(new MethodNameMatcher("testMethod")));14 }15 });16 mock.testMethod();17 context.assertIsSatisfied();18 }19}20public interface TestInterface{21 public void testMethod();22}23BUILD SUCCESSFUL (total time: 0 seconds)

Full Screen

Full Screen

MethodNameMatcher

Using AI Code Generation

copy

Full Screen

1package org.jmock.test.acceptance;2import org.jmock.Mock;3import org.jmock.MockObjectTestCase;4import org.jmock.internal.matcher.MethodNameMatcher;5public class MethodNameMatcherAcceptanceTest extends MockObjectTestCase {6 public void testCanMatchMethodName() {7 Mock mock = mock(Runnable.class);8 mock.expects(once()).method(new MethodNameMatcher("run"));9 ((Runnable)mock.proxy()).run();10 }11}12package org.jmock.test.acceptance;13import org.jmock.Mock;14import org.jmock.MockObjectTestCase;15import org.jmock.internal.matcher.MethodNameMatcher;16public class MethodNameMatcherAcceptanceTest extends MockObjectTestCase {17 public void testCanMatchMethodName() {18 Mock mock = mock(Runnable.class);19 mock.expects(once()).method(new MethodNameMatcher("run"));20 ((Runnable)mock.proxy()).run();21 }22}23package org.jmock.test.acceptance;24import org.jmock.Mock;25import org.jmock.MockObjectTestCase;26import org.jmock.internal.matcher.MethodNameMatcher;27public class MethodNameMatcherAcceptanceTest extends MockObjectTestCase {28 public void testCanMatchMethodName() {29 Mock mock = mock(Runnable.class);30 mock.expects(once()).method(new MethodNameMatcher("run"));31 ((Runnable)mock.proxy()).run();32 }33}34package org.jmock.test.acceptance;35import org.jmock.Mock;36import org.jmock.MockObjectTestCase;37import org.jmock.internal.matcher.MethodNameMatcher;38public class MethodNameMatcherAcceptanceTest extends MockObjectTestCase {39 public void testCanMatchMethodName() {40 Mock mock = mock(Runnable.class);41 mock.expects(once()).method(new MethodNameMatcher("run"));42 ((Runnable)mock.proxy()).run();43 }44}45package org.jmock.test.acceptance;46import org.j

Full Screen

Full Screen

MethodNameMatcher

Using AI Code Generation

copy

Full Screen

1Matcher methodNameMatcher = new MethodNameMatcher("someMethod");2Matcher methodNameMatcher = new MethodNameMatcher("someMethod", String.class);3Matcher methodNameMatcher = new MethodNameMatcher("someMethod", String.class, int.class);4Matcher methodNameMatcher = new MethodNameMatcher("someMethod", String.class, int.class, float.class);5Matcher methodNameMatcher = new MethodNameMatcher("someMethod", String.class, int.class, float.class, double.class);6Matcher methodNameStartsWithMatcher = new MethodNameStartsWithMatcher("someMethod");7Matcher methodNameStartsWithMatcher = new MethodNameStartsWithMatcher("someMethod", String.class);8Matcher methodNameStartsWithMatcher = new MethodNameStartsWithMatcher("someMethod", String.class, int.class);9Matcher methodNameStartsWithMatcher = new MethodNameStartsWithMatcher("someMethod", String.class, int.class, float.class);10Matcher methodNameStartsWithMatcher = new MethodNameStartsWithMatcher("someMethod", String.class, int.class, float.class, double.class);11Matcher methodNameMatcher = new MethodNameMatcher("someMethod");12Matcher methodNameMatcher = new MethodNameMatcher("someMethod", String.class);

Full Screen

Full Screen

MethodNameMatcher

Using AI Code Generation

copy

Full Screen

1package org.jmock.examples;2import junit.framework.*;3import org.jmock.*;4import org.jmock.core.*;5import org.jmock.examples.*;6import org.jmock.examples.calculator.*;7import org.jmock.expectation.*;8import org.jmock.internal.*;9import org.jmock.internal.matcher.*;10{11 public void testMatchesMethodWithName() {12 MethodNameMatcher matcher = new MethodNameMatcher("add");13 assertTrue("Should match add method", matcher.matches(new MockInvocation("add", null)));14 assertFalse("Should not match subtract method", matcher.matches(new MockInvocation("subtract", null)));15 }16}17package org.jmock.internal.matcher;18import junit.framework.*;19import org.jmock.*;20import org.jmock.core.*;21import org.jmock.examples.*;22import org.jmock.examples.calculator.*;23import org.jmock.expectation.*;24import org.jmock.internal.*;25{26 public void testMatchesMethodWithName() {27 MethodNameMatcher matcher = new MethodNameMatcher("add");28 assertTrue("Should match add method", matcher.matches(new MockInvocation("add", null)));29 assertFalse("Should not match subtract method", matcher.matches(new MockInvocation("subtract", null)));30 }31}32package org.jmock.internal.matcher;33import junit.framework.*;34import org.jmock.*;35import org.jmock.core.*;36import org.jmock.examples.*;37import org.jmock.examples.calculator.*;38import org.jmock.expectation.*;39import org.jmock.internal.*;40{41 public void testMatchesMethodWithName() {42 MethodNameMatcher matcher = new MethodNameMatcher("add");43 assertTrue("Should match add method", matcher.matches(new MockInvocation("add", null)));44 assertFalse("Should not match subtract method", matcher.matches(new MockInvocation("subtract", null)));45 }46}

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.

Run Jmock-library automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used methods in MethodNameMatcher

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful