Update: The users of some a bit exotic SDKs reported that they cannot build the example. The reason was the project file SampleTest.mmp. I updated it making the project file a bit redundant. Now example should be compilable on any S60 SDK.
CppUTest is a unit testing framework based on CppUnitLite and designed for the embedded systems usage. Lately it has been ported to Symbian OS used in Nokia S60 smartphones. The framework is xUnit compatible, extremely simple and easy to use. It can print the test results both to console and to a junit-like xml file (later I am going to investigate how well it can be parsed by standard junit output parsers).
Symbian extension. Usage example
Unfortunately, CppUTest package at the moment does not include a full-blown Symbian specific example and lacks support for such Symbian primitives as descriptors (Symbian strings) and leaves (Symbian exceptions).
The file attached to this post contains both. It is a simple and heavily commented example of using CppUTest in Symbian, that includes cpputestsymbianextension.h adding support for descriptors and leaves.
The project is licensed under BSD so you can use it for commercial purposes or even resell it. If even BSD is too restrictive for you, contact me and we'll work some solution out.
- /**
- * Whenever salary raise is requested, salary has indeed to be increased
- */
- TEST( CPerson, RaiseSalaryAddsSalary )
- {
- person->RaiseSalaryL(120);
- LONGS_EQUAL(1120, person->Salary())
- }
- /**
- * Raising salary with the negative amount should make the code leave
- */
- TEST( CPerson, IncorrectSalaryRaiseForcesLeave )
- {
- // FAIL macro can be used to fail the not yet implemented test cases
- // FAIL( "not implemented yet" );
- // code should leave with KErrArgument
- CHECK_LEAVES_WITH( KErrArgument, person->RaiseSalaryL(-120));
- // and salary should not be changed after the illegal raise attempt
- LONGS_EQUAL(1000, person->Salary());
- // sometimes you might be interested in verifying that code leaves
- // without caring about the concrete leave code
- CHECK_LEAVES( person->RaiseSalaryL(-120));
- }
Attachment | Size |
---|---|
SampleTest.zip | 14.64 KB |