我在我的应用程序中编写了一个 selenium 示例测试用例。然后我右键单击该文件并选择“测试文件”。结果
Testsuite: com.MyApp.SampleSeleniumTest
Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.265 sec
Testcase: warning(junit.framework.TestSuite$1): FAILED
No tests found in com.MyApp.SampleSeleniumTest
junit.framework.AssertionFailedError: No tests found in com.MyApp.SampleSeleniumTest
Test com.MyApp.SampleSeleniumTest FAILED
我的代码是
package com.MyApp;
import com.thoughtworks.selenium.*;
import org.junit.Test;
public class SampleSeleniumTest extends SeleneseTestCase {
@Override
public void setUp() throws Exception {
setUp("http://www.google.com", "*firefox");
}
@Test
public void whatever() throws Exception {
selenium.open("/");
assertTrue(selenium.isTextPresent("Explore"));
}
}