im just moving from c# -> java. I need to write some tests using junit. In my test i need to compare two strings to see if they match. So we also have the Assert.assertEquals, but this is case sensitive. How can i make it case insensitive? What i need is:
"blabla".equals("BlabLA")
to return true.
So in C#, we used to have :
public static void AreEqual (
string expected,
string actual,
bool ignoreCase,
string message
)
I was quickly going thru Junit docs, but i can't seem to find anything like this.