以下のコードのサンプルは、 を返しますnull pointer exception
。何故ですか?
public class JunitCheck {
WebDriver driver;
public String baseURL = null;
@Before
public void setUp() throws Exception {
baseURL = "https://www.google.com";
}
@After
public void tearDown() throws Exception {
}
@Test
public void test() {
driver = new FirefoxDriver();
driver.get(baseURL);
System.out.println(baseURL);
}