Вход Регистрация
Файл: framework/dev/SapphireTestSuite.php
Строк: 27
<?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();
        }
    }
}
Онлайн: 0
Реклама