A test project consists of a range of basic tests. These tests can be nested, run in loops, put in structures in whatever way is appropriate for the test organization. There is no hard coded arrays and/or global variables that limits how these can be organized. A TestApe test is made of one plain C function that will setup expectations, call one or more functions in the unit, and validate the result.
In the sample below the test test_addition will call the function
calculate in the unit.
void test_addition(void) {
int result;
result = calculate(3,7,'+');
}
The sample is executed using EXECUTE(test_addition) and this would produce
the following output in the log
Executing test test_addition PASSED test test_addition
Even though there is no validation in this test, it will enable
coverage analysis, debugging and memory checking of the code in
calculate.
New is this release are support for floating point validations and function mocking. Also, MinGW has been added to the list of supported platforms.
moreTestApe forum is now hosted on Proboards. Support questions can be posted here or send directly on email. Due to ...
moreTestApe can now be used with MinGW GCC on windows. Also supported in this beta are floating point types in validations or when mocking functions
moreA small fix for webtty scripts, to allow the usage from Apple IPads. Tab on textarea to bring up IPad keyboard - you may have to scroll webpage beneath keyboard, in order to actually see what you're typing.
This release contains a new flexible mocking system with default mocks automatically generated for unresolved functions. Installation packages are available for GCC/Linux, GCC/CygWin as well Visual Studio 2009/Windows XP or Vista.
moreNew beta version is now available for download. This is the last beta before official release. The release supports an extensive mocking system.
moreThere is a change for the forum hosted on this site. The previous phpBB forum is closed for now. All forum threads will be migrated to a new simple blog. ...
more