Testing application engine?
| Fri, 2008-04-18 08:36 | |
|
How can we test our application engine without creating UI first? I m doing a project on developing a music player application.I have written an engine program for playing audio files.now how can i check that it is playing a file successfully, without creating UI....... i dont know how to do that,so it will be a great help for me if someone can guide me......... Thanks and Regards, |
|






Forum posts: 1233
Doing what you describe is commonly called "Unit testing", and should be part of any serious development effort.
There are a few frameworks for unit testing available for symbian.
try google for "symbian unit testing"
Its basically a small program that run "unit tests" which are small code snippets you write with typically a "Setup", "RunTest" and "TearDown" function, to test your engine:s and api:s.
Then you have to write test cases for everything you want to test...