Not able to run JUnit | Selenium Forum
M
Posted on 04/11/2016
Is anything wrong with this code? Not getting Junit when I do RunAs..

********************************************************************

package TestCases;

public class UnderstandingAssertions {

public void findfriendslistfacebook(){

int actualfriendlistfacebook =100;
int expectedfriendlistfacebook = 101;

if(actualfriendlistfacebook == expectedfriendlistfacebook){
System.out.println("pass");
}else{
System.out.println("fail");
}

}

}

M
Replied on 04/11/2016

I found the issue myself. Thanks