gpt4 book ai didi

java - 验证 Junit 中 URL 的值?

转载 作者:行者123 更新时间:2023-12-01 18:00:55 24 4
gpt4 key购买 nike

我必须为返回 URL 的方法编写一个单元测试用例,我必须验证 URL 中参数的所有值,是否有任何 API 或更好的方法来解决这个问题..

如有任何建议,我们将不胜感激。

Java 方法:

 class Sample{
public String returnURL(){
return "http://localhost:9080/sample?a=12-a&b=param2&c=param3&d=param_4&e=param5"
}
}

朱尼特:

@Test
public void returnURLTest(){
String url = new Sample().returnURL()
// Parse the url
assert url['a'] == "param1"
assert url['b'] == "param2"
}

谢谢

最佳答案

如果您使用 AssertJ,则可以创建 URI(或 URL)对象并在其上使用断言,如这些示例所示:https://github.com/joel-costigliola/assertj-examples/blob/master/assertions-examples/src/test/java/org/assertj/examples/UriAssertionsExamples.java

assertThat(new URI("http://www.helloworld.org/index.html?happy=very")).hasParameter("happy", "very");

关于java - 验证 Junit 中 URL 的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41007915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com