mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
24 lines
625 B
PHP
24 lines
625 B
PHP
<?php
|
|
/**
|
|
* Light wrapper around {@link PHPUnit_Framework_TestSuite}
|
|
* which allows to have {@link setUp()} and {@link tearDown()}
|
|
* methods which are called just once per suite, not once per
|
|
* test method in each suite/case.
|
|
*
|
|
* @package framework
|
|
* @subpackage testing
|
|
*/
|
|
class SapphireTestSuite extends PHPUnit_Framework_TestSuite {
|
|
public function setUp() {
|
|
foreach($this->groups as $group) {
|
|
if($group[0] instanceof SapphireTest) $group[0]->setUpOnce();
|
|
}
|
|
}
|
|
|
|
public function tearDown() {
|
|
foreach($this->groups as $group) {
|
|
if($group[0] instanceof SapphireTest) $group[0]->tearDownOnce();
|
|
}
|
|
}
|
|
}
|