896+ Capstone Project is Available: Whatsapp: +91-7011258995, Email: sharecodepoint@gmail.com

CSE534 : Program in eclipse to create test cases for String Equal - Software Testing and Quality Assurance laboratory - CSE 534 by Aniket Pramanik

Information about the quality of the software product or service under test.

Program in eclipse to create test cases for String Equal : 

StringEqual.java
package programs;

public class StringEqual {
public boolean strEqual(String str1,String str2) {
	boolean flag=false;
	
	if(str2.equals(str1)){
			flag=true;
		}
	return flag;
}
}

StringEqualTest.java
package programs;

import static org.junit.Assert.*;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class StringEqualTest {
StringEqual s;
	@Before
	public void setUp() throws Exception {
	s=new StringEqual();}

	@After
	public void tearDown() throws Exception {
	}

	@Test
	public void test() {
		assertEquals(true,s.strEqual("aniket", "aniket"));
		assertEquals(false,s.strEqual("aniket", "aniketp"));
		assertEquals(false,s.strEqual("aniket","et"));
		assertEquals(false,s.strEqual("welcome", "come"));
	}

}
About Developer
Aniket Pramanik
I love to make things simple :)

Sharecodepoint

Sharecodepoint is the junction where every essential thing is shared for college students in the well-defined packets of codes. We are focused on providing you the best material package like Question papers, MCQ'S, and one NIGHT STUDY MATERIAL. facebook twitter youtube instagram

Post a Comment

Previous Post Next Post

Contact Form