13 lines
159 B
PHP
13 lines
159 B
PHP
<?php
|
|
|
|
class DoctrineTest_Reporter
|
|
{
|
|
protected $_test;
|
|
|
|
public function setTestCase(GroupTest $test)
|
|
{
|
|
$this->_test = $test;
|
|
}
|
|
}
|
|
|