Quantcast
Channel: Agile Software Development - example
Viewing all articles
Browse latest Browse all 8

CppUTest framework. Symbian extension and example

$
0
0

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.

  1. /**
  2.  * Whenever salary raise is requested, salary has indeed to be increased
  3.  */
  4. TEST( CPerson, RaiseSalaryAddsSalary )
  5.         {
  6.         person->RaiseSalaryL(120);
  7.         LONGS_EQUAL(1120, person->Salary())
  8.         }
  9.  
  10. /**
  11.  * Raising salary with the negative amount should make the code leave
  12.  */
  13. TEST( CPerson, IncorrectSalaryRaiseForcesLeave )
  14.         {
  15. // FAIL macro can be used to fail the not yet implemented test cases
  16. //      FAIL( "not implemented yet" );
  17.  
  18.   // code should leave with KErrArgument
  19.         CHECK_LEAVES_WITH( KErrArgument, person->RaiseSalaryL(-120));
  20.         // and salary should not be changed after the illegal raise attempt
  21.         LONGS_EQUAL(1000, person->Salary());
  22.        
  23.         // sometimes you might be interested in verifying that code leaves
  24.         // without caring about the concrete leave code
  25.         CHECK_LEAVES( person->RaiseSalaryL(-120));
  26.         }
  27.  
AttachmentSize
SampleTest.zip14.64 KB

Viewing all articles
Browse latest Browse all 8

Trending Articles