Thoughts on new mobile technologies and development areas.
P.S.
Use Nokia barcode reader to read the code ;-)
jack44 | 29 June, 2007 14:24
Last time I wrote about EDFU, but this time I'll focus on some testing techniques. Probably many of us use them, but it may be interesting to recap.
We can use:
One can also add Message Sequence Charts to understand client-server architecture better, code review (probably one of the most efficient defect finding techniques, but it's very slow and should be used only on the most risky components), extreme programming (includes testing).
Some other facts related to development and quality assurance process you can find in a new set of S60 guidelines: http://www.forum.nokia.com/document/S60_Platform_Development_and_QA_Process_Guideline/
I'd like to know your opinions and experiences in using testing frameworks to speed up testing like JUnit for java (or checking your code with SymScan for C++)... Do you consider the Symbian Signed and Java Verified requirements when designing test cases?
S60, Testing |
Next |
Previous |
Comments (4) |
Trackbacks (0)
jack44 | 01/07/2007, 21:15
Well, you're right - I've got the same feeling. I suppose book has been written mainly before S60 3rd edition and was quickly adopted to it (1 - author mentions about MMC certificates needed for a phone program (page 51), but no word about mini/microSD, wifi which are almost a standard in 3rd edition; 2 - author writes (page 3) that S60 devices have 12 keys; not true - there were available devices with QWERTY support like E61, E70 before the book was finished, e.g. check appendinx A, where N80, N73, N93 are mentioned - these devices were developed after E61, E70). I also haven't found an answer for a simple question: how long does it take from a product idea to the day it is available for the end user? (I can only guess) As for a book about QA, publisher of the book should improve its own QA process ;-) (a lot of small spelling errors like: majr -> major, test -> text, ebing -> being, has -> his, te -> the, fix at -> fix it, to have be -> to be, fom -> from to mention only a few) - I wrote an erratum to the book, but I haven't found (so far) a way to deliver it to the publisher/author (maybe they will use it in next reedition). I'm not complaining about the book - I understand that's not easy to write a book by one person having many other things to do in life. TwmD | 13/07/2007, 14:13
tote_b5 | 10/07/2007, 21:55
I think it's also worth mentioning Continuous Integration (CI), too. With such a tool capable of integrating code continuously we're able to detect build errors as soon as new code has been checked in to our version control system. And not only can we test the build process, but we can run automated tests upon each check-in and generate statistics from the result. Not to mention SymScan, code coverage, etc. integration. This is a very agile way of testing and integrating.
Re: S60 and creating applications with quality in mind (part 2)
ptrmn | 01/07/2007, 13:38
The Symbian Signed criteria is a good collection of things that should be tested, not just if you're trying to get your app Symbian Signed. Things like checking so that your code behaves well on incoming calls or messages are very important, but might be ignored because you can't test it on the emulator, you need to have SIM cards in your test devices etc.
When I designed a Symbian specific test suite for our gaming middleware at my last job, I got a lot of inspiration from the Symbian Signed criteria. However, as many have pointed out before, they're not good as actual tests, as they're not nearly as well-specified as they ought to be.
BTW, what do you think of the S60 QA book? I felt that it could have been good, if it had been finished before being printed.