我如何在测试中使用 testNG 运行 一个已经创建的 Java 程序?

How can I use testNG to run an already created Java program in a test?

我已经创建了一个 Java 程序。我需要知道在 testNG 中 运行 整个程序的最简单方法。像这样:

@Test
public void executeSessionOne(){
    runJavaProgram();
}

这可能吗?

编辑:我有一个名为 Main.java 的 Java 文件和另一个名为 Tools.java 的文件。我 运行 Main.java 程序并使用 Selenium 测试网页。 Tools.java正好有一些我需要的功能

我也试过这个:


public class RealTest {
    
    @Test    
    public void run1() throws MalformedURLException{           
        new Main();
    }
    
    @Test    
    public void run2() throws MalformedURLException{           
        new Main();
    }
    
    @Test    
    public void run3() throws MalformedURLException{           
        new Main();
    }
    
    @Test    
    public void run4() throws MalformedURLException{           
        new Main();
    }
}
    public Main() throws MalformedURLException {
        String arg [];
        arg = new String []{"300"};
        caps = new DesiredCapabilities();
        caps.setCapability("os", "Windows");
        caps.setCapability("os_version", "10");
        caps.setCapability("browser", "Chrome");
        caps.setCapability("browser_version", "80.0 beta");
        caps.setCapability("browserstack.local", "false");
        caps.setCapability("browserstack.selenium_version", "3.5.2");

        caps.setCapability("name", "selenium test");

        //driver = new RemoteWebDriver(new URL(URL), caps);
        
        chromeOptions = new ChromeOptions();
        String chromeDriverPath = "resources/chromedriver.exe";
        System.setProperty("webdriver.chrome.driver", chromeDriverPath);
        driver = new ChromeDriver();
        driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
        
        try {
            before(arg);
            test();
            after();
        } catch (Exception e) {
            Waits.pause(e.getMessage());
            driver.quit();
        }
        
    }

但是测试合并后无法正常工作。

如果程序在其他class,运行方法通过创建class的对象。

它应该像这样工作:

public class test {
public static void main(String[] args) {

    String a = "_SEQ_1";
    a = a.substring (5);
    System.out.println (a);

}

}

@Test
public void testMethod(){
    test testObj = new test();
    testObj.main(new String[]{});
}