在 GWTTestCase 中测试 JsonUtils

发布于 2024-12-01 09:48:41 字数 188 浏览 1 评论 0原文

我想创建一些测试用例来查看我的 JSON 解析类是否正常工作。因此,我想用一个 JavaScript 对象实例化它们,该对象是我从 JSON 字符串创建的,并抛出 JsonUtils。

我现在的问题是,JsonUtils 是一种本机方法,因此在测试期间现在有可用的源代码。

是否有可能构建包含本机方法的 GwtTestCases?

I want to create some testcase to see if my JSON parsing classes work correct. Therefore I want to instantiate them with a JavaScript object which I create form a JSON String throw the JsonUtils.

My problem now is that, JsonUtils is a native method, so there is now source code available for it, during testing.

Is there a possibility to built GwtTestCases which include native methods?

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

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

发布评论

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

评论(1

迷途知返 2024-12-08 09:48:41

好的,写完问题后,我在谷歌上得到了一些新想法,并找到了这篇文章: GWTTestCase 中出现 UnsatisfiedLinkError。选项

因此,显然您不能在 GWTTestCase 构造函数中使用本机方法,但您可以在测试函数中使用它们。

非法示例:

JSWidgetBasic jswb;
public JSWidgetBasicTest() {
    String s_jswb = "{\"zzzz\":\"type\"}";
    jswb = JsonUtils.safeEval(s_jswb).cast();
}

public void testWidgetType() {
    assert (jswb.getZZZZ().compareTo("type") == 0);
}

但这是允许的

public JSWidgetBasicTest() {
}

public void testWidgetType() {
    String s_jswb = "{\"zzzz\":\"type\"}";
    JSWidgetBasic jswb = JsonUtils.safeEval(s_jswb).cast();

    assert (jswb.getZZZZ().compareTo("type") == 0);
}

希望这对某人有帮助,因为我浪费了几个小时找到它......

Ok, after writting the question I got some new ideas to google and found this article: UnsatisfiedLinkError in GWTTestCase. Options.

So apperently you just cant use native methods in the GWTTestCase constructur, but you can use them inside the test function.

Example illeagal:

JSWidgetBasic jswb;
public JSWidgetBasicTest() {
    String s_jswb = "{\"zzzz\":\"type\"}";
    jswb = JsonUtils.safeEval(s_jswb).cast();
}

public void testWidgetType() {
    assert (jswb.getZZZZ().compareTo("type") == 0);
}

but this is allowed

public JSWidgetBasicTest() {
}

public void testWidgetType() {
    String s_jswb = "{\"zzzz\":\"type\"}";
    JSWidgetBasic jswb = JsonUtils.safeEval(s_jswb).cast();

    assert (jswb.getZZZZ().compareTo("type") == 0);
}

Hope this helps someboedy, cause I wasted a few hours finding it....

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