Facing 'Exception in thread "main" java.lang.NoClassDefFoundError"' exception in intellij
import org.testng.annotations.Test;
public class FistTestCase
{
@Test
void setup()
{
System.out.println("Open browser");
}
@Test
void login()
{
System.out.println("This is login test");
}
@Test
void teardown()
{
System.out.println("Close browser");
}
}