Download List

專案描述

p-unit is a framework for unit testing and
performance benchmarking. As a unit test, it can
run with a single thread or multiple threads
against the same test code. p-unit has an executor
pool which can accelerate the execution speed
dramatically. As a perforamnce test framework, it
records memory consumption and execution time, and
generates results in the form of plain text,
image, and PDF file. Users can also easily
register their own reporters by implementing the
p-unit event listener.

System Requirements

System requirement is not defined
Information regarding Project Releases and Project Resources. Note that the information here is a quote from Freecode.com page, and the downloads themselves may not be hosted on OSDN.

2008-01-13 17:14
0.14

The p-unit core is based on J2SE5 now. Some minor
bugs were fixed.
標籤: Major feature enhancements

2007-11-27 17:01
0.13-android

This version lets you use p-uint with Android. An
AndroidConsoloLogger was added. i18n was disabled,
which is not supported by Android yet.
標籤: Major feature enhancements

2007-08-13 06:10
0.13

Changes to adopt the Apache License 2.0. A customized watcher infrastructure to make it possible to report results from test cases. A new EventListener that sets public test fields on start up.
標籤: Major feature enhancements

2007-06-16 04:16
0.12

This release can run existing JUnit 4.x test cases without any modification of the source code. It provides a full set of annotation, including @Test, @Before, @After, @BeforeClass, and @AfterClass. A sample project is provided in the distribution.
標籤: Major feature enhancements

2007-06-03 22:54
0.11

Executor pool p-unit accelerates the execution speed by using executor pool, which fully takes advantage of hardware, especially multi-core machines. You can use annotation to identify the test method and expected exception, i.e. @Test(expected = NullPointerException.class, checkMethod = "checkAdd"). Check Method has been added, and is especially useful for concurrent testing. After executing a test method, p-unit invokes the corresponding check method if available. The name convention is "check_" prefix. You can also use @Test(checkMethod) to mark the check method.
標籤: Major feature enhancements

Project Resources