Quantcast
Channel: Javadomain » Selenium
Viewing all articles
Browse latest Browse all 6

Junit Test case sample

$
0
0

Step 1: Java code

package com.math;

public class AgnClass {
	public int Sum(int x, int y) {
		return x + y;
	}
}

Step 2: Junit Test case for the above Java code

package com.math;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class AgnClassTest {

	@Test
	public void testSum() {
		AgnClass nav = new AgnClass();
		assertEquals("Result", 15, nav.sum(10, 5));
	}
}

Step 3: Right click on the AgnClassTest program and run as junit, then by means of green color indication we can understand the success of the test case and program.… Read more.....

The post Junit Test case sample appeared first on Javadomain.


Viewing all articles
Browse latest Browse all 6

Trending Articles