I am writing Junit test cases for the following method. The Junit test case is below it. I can't seem to figure out what to test or how to?
//method
package try.out;
public class MyString implements MyStringInterface{
public static String str;
public void removeChar(char C){
str = MyString.str.replace("C", "");
System.out.println(str);
}
//testcase.
@Test
public void testremoveChar() {
MyString test = new MyString();
//what do i do next?
}