David Pokluda's blog

Business application development, agile development, and other software engineering topics

September, 2006

Posts
  • David Pokluda's blog

    SysTest part III.: Introduction to test suites

    • 5 Comments
    In the first part I mentioned the following code: static void RunMySimpleTests(Args _args) { SysTestSuite suite = new SysTestSuite(classstr(MySimpleTests)); SysTestResult result = new SysTestResult(); ; result.addListener(new SysTestListenerPrint...
  • David Pokluda's blog

    SysTest part II.: Exceptions

    • 3 Comments
    In this post I will try to describe exceptions handling using SysTest . Very often applications throw exceptions and we have to be able to handle these situations correctly in our UnitTest s. Let's say we have the following application class: public...
  • David Pokluda's blog

    SysTest part I.: Assertions and test classes

    • 9 Comments
    In the next series of posts I will demonstrate and explain some of the basic as well as some more advanced features of SysTest . Test classes Let's begin with a very simple test. To create a test, derive a class from SysTestCase class. This is all...
Page 1 of 1 (3 items)