Junit——命令行参数

发布于 2024-12-09 05:14:19 字数 405 浏览 0 评论 0原文

我刚刚开始学习 JUnit。我的代码如下:

public class MyClass {
  private void verify(args) {...}
  private void process(clientoptions) {...}

  public static void main(String[] args) {
    verify(args);
    //get client and do something
    .....
    // some more code here....
    ........
    // and then 
    process(clientoptions);
  }
}

如何在 Junit 中编写测试,然后发送不同的命令行参数。

谢谢

I have just started learning JUnit. I have code as follows:

public class MyClass {
  private void verify(args) {...}
  private void process(clientoptions) {...}

  public static void main(String[] args) {
    verify(args);
    //get client and do something
    .....
    // some more code here....
    ........
    // and then 
    process(clientoptions);
  }
}

How do you write a test in Junit and then send in different command line arguments.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉月流沐 2024-12-16 05:14:19

简单的!

public class MyClassTest {

    @Test
    public void shouldVerifyParameters() {
        MyClass.main(new String[]{"param1", "param2"});
    }

}

但是,为了便于测试,请考虑将 MyClass 重构为 MyClassMainMyClass,其中前者仅解析和验证命令行参数并使用 <代码>客户端选项。

这样您就不会违反单一责任原则,并且您可以使用main 之外的业务逻辑,例如在 servlet 中或移动设备上。而且...测试更简单。

Simple!

public class MyClassTest {

    @Test
    public void shouldVerifyParameters() {
        MyClass.main(new String[]{"param1", "param2"});
    }

}

However for ease of testing consider refactoring MyClass into MyClassMain and MyClass where the former only parses and verifies command line arguments and calls the latter class with clientoptions.

This way you don't violate Single responsibility principle and you can use the business logic outside of main, for instance in servlet or on a mobile. Also... testing is simpler.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文