jMock Tutorial for Beginners

jmock tutorial for beginners
Table of Contents

jMock Tutorial for beginners with Test Project

What is jMock?

jMock is a library which helps to create test-driven development of Java code with mock objects.With the help of jMock we can test class independently which depends on another class.

Suppose if one class depends on other class we can create a mock of dependent class and set the initial properties to test the dependent class.

Imock Tutorial

jMock Tutorial Example:

Note: We are using the Eclipse platform for this Test Project. You can download Eclipse from here.

Make sure Java SE Runtime Environment is already installed for Eclipse installer to initiate installation.

Create a Test project in java named Test project.Include following jars in its classpath:

Jmock TutorialPin

  • jmock-2.5.1.jar
  • hamcrest-core-1.1.jar
  • hamcrest-library-1.1.jar
  • JUnit-4.5.jar

Jmock Tutorial For BeginnersPin

Create an interface named ITestInterface.Put the following code in this interface :

package test;

public interface ITestInterface

{

public int test();

}

What Is JmockPin

Create TestClass1.Put the following code in this class

package test;

public class TestClass1 implements ITestInterface

{

public int test()

{

return 3;

}

}

Jmock ExamplePin

Create TestClass2.Put the following code in this class





package test;

public class TestClass2

{

ITestInterface testInterface;

public TestClass2()

{

this.testInterface=testInterface;

}

public int testMock()

{

int result=testInterface.test();

return result;

}

}

Jmock Tutorial PdfPin

Create TestClass3.Put the following code in this class

package test;

import junit.framework.Assert;

import org.jmock.Mockery;

import org.junit.Test;

public class TestClass3

{

@Test

public void testJmock()

{

org.jmock.Mockery TestInterfaceMock= new Mockery();

final ITestInterface testInterface=TestInterfaceMock.mock(ITestInterface.class);

TestInterfaceMock.checking(new org.jmock.Expectations()

{{

oneOf(testInterface).test();

will(returnValue((3)));

}});

int j=testInterface.test();

System.out.println(j);

Assert.assertEquals(j, 3);

}

}

Jmock For BeginnersPin

As from above example it is clear that TestClass1 implements the interface ITestInterface. Here if we observe TestClass2 is dependent on TestClass1.So to make it unit testable we are not doing new of TestClass1 in TestClass2.We are using mock object.

In TestClass3 we are making the Mock object of ITestInterface.We are setting the expectation for this object to return 3 when it is called during the unit testing of TestClass2.For example in TestClass3 when we make a call to testInterface.test() the call goes to TestClass2.In TestClass2 when we call testInterface.test() the value is returned by the mock object.In this way we are testing TestClass2 independently.

To test above Example right click on TestClass3 and select run as Junit test.


Junit TestPin
Junit Test

It will show the following screen:

Junit Test RunPin

Test case executed successfully!

Anson Antony
Anson Antony
Anson is a contributing author and founder at www.askeygeek.com. Learning anything new has always been his passion, askeygeek.com is an outcome of his passion for technology and business. He has got a decade of versatile experience in Business Process Outsourcing, Finance & Accounting, Information Technology, Operational Excellence & Business Intelligence. During the tenure, he had worked for organizations like Genpact, Hewlett Packard, M*Modal and Capgemini in various roles and responsibilities. Outside business and technology, he is a movie buff who spends hours together watching and learning Cinema and a Film Maker too!

5 Responses

Leave a Reply to Anson Cancel reply

Your email address will not be published. Required fields are marked *

Congratulations!
You Made It,
Don't Close!
Enter your chance to win 100,000 UberTTS Character Credits
Thank you for your visit!

This popup won’t show up to you again!!!

UberTTS 100K Easter Egg
Share to...