~xpw-framework/xpw-framework/trunk

« back to all changes in this revision

Viewing changes to Xpw/Tests/System/SystemAllTests.php

  • Committer: Olexandr Zanichkovsky
  • Date: 2008-08-12 18:30:14 UTC
  • Revision ID: sasha@eternity-20080812183014-oqietkk75dg16wsr
- changed Xpw_System_Value to be abstract;
- started work on String Test;

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
require_once 'PHPUnit/Framework.php';
3
3
 
4
4
require_once 'BaseTest.php';
 
5
require_once 'StringTest.php';
5
6
 
6
7
class SystemAllTests
7
8
{
10
11
        $suite = new PHPUnit_Framework_TestSuite('XPW System');
11
12
 
12
13
        $suite->addTestSuite('BaseTest');
 
14
        $suite->addTestSuite('StringTest');
13
15
 
14
16
        return $suite;
15
17
    }