gpt4 book ai didi

java - 如何轻松对黑莓代码进行单元测试?

转载 作者:IT老高 更新时间:2023-10-28 20:47:23 26 4
gpt4 key购买 nike

对于我的大学类(class),我们正在开发一个多线程黑莓应用程序,它允许我们使用蓝牙扫描运行我们应用程序的其他设备,然后通过 Wifi 接口(interface)通过 TCP 相互传输文件,实现 NAT 遍历,同时记录我们的 GPS 位置。 (这是 RIM 赞助的计算机网络类(class),以防这还不明显。)

我越来越喜欢 Test Driven Development并打算用它来制定我的家庭作业。但是,我在测试期间扩展或以其他方式调用的任何 Blackberry 类都会给我一个 ClassFormatError由于非法修饰符。我认为这个错误是因为带有黑莓代码的 jar 必须是专门为他们的专有 JVM 编译的。

到目前为止,我已经使用了 Proxy Pattern并实现Mock Objects的代理。但是,这变得非常乏味,因为我继承了许多本地 Blackberry 类。

如果可能,我还想避免启动黑莓模拟器。启动它可能需要几分钟,这对于单元测试来说是不切实际且烦人的。

是否有简单的方法对我的黑莓代码进行单元测试?

最佳答案

样机测试

您的模型制作方法正确,但我不建议您在 J2SE 平台上测试 Blackberry 功能。我认为应该使用代理和模型,以防本地源中没有可用的测试数据,例如:

“扫描其他设备” - 没有其他设备但您想测试扫描功能
“通过 Wifi 接口(interface)的 TCP” - 你想在 Storm(无 WiFi)上测试它
“记录我们的 GPS 位置” - 设备位置是静态的,但您想测试其他位置

然后您可以使用黑莓平台模拟这样的功能:
BlackBerry GPS location mockup

您仍然可以使用相同的名称和签名从头开始在 J2SE 上重现 BlackBerry API 类。那将假定您必须自己实现所有类功能。

在没有模拟器的情况下测试 j2me

这将是一个非常好的选择,但到目前为止我还看不出如何做到这一点。

测试涉及应用程序运行,这涉及平台模拟。有可能在不运行整个 UI 模拟器的情况下测试 j2me 代码,但我不知道。

您可以做的是在 Java 标准版上以最少的代码更改测试一些业务逻辑。

您仍然需要在模拟器上运行与平台相关的功能测试,但您可以在一个应用程序中进行,这将是一组单元测试,就像 ChrisW 已经说过的那样。只需将测试方法一一运行并在屏幕上输出结果:
方法 1 - 通过 - 0.03 秒
方法 2 - 通过 - 1.30 秒
Method3 - 通过 - 0.25 s

J2MEUnit

http://j2meunit.sourceforge.net/ :

J2MEUnit is a Java 2 Micro Edition (J2ME) library containing a unit testing framework for J2ME applications. It is based on the source code of the original JUnit, the successful unit testing framework for the standard (desktop) edition of Java, J2SE.

Unit Testing J2ME applications with J2MEUnit and Eclipse
Quick Tutorial to setup & learn J2MEUnit

JMUnit

http://jmunit.sourceforge.net/ :

JMUnit is a unit test framework for Java ME (J2ME) based on JUnit. It has the following features:
- Works in both the Sun emulator and on actual devices.
- Is small (tests can be run even on old MIDP 1.0 devices).
- Has a comprehensive collection of Assert methods for checking test failures.
- Both TestCases and TestSuites are supported.
- Includes Ant tasks for running JMUnit tests in a continuous build.
- Has performance monitoring classes inspired by JUnitPerf.

Writing and running JMUnit tests

BUnit

Unit Testing library for RIM Blackberry based on jmunit

http://sourceforge.net/projects/b-unittesting/
BlackBerry Support Community Forums: How to do unit testing my Blackberry Application

附加

How To - Automate testing with the BlackBerry Simulator

关于java - 如何轻松对黑莓代码进行单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1020656/

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