Proyectos de Subversion Moodle

Rev

Rev 11 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11 Rev 1441
Línea 30... Línea 30...
30
 * @package    core
30
 * @package    core
31
 * @category   test
31
 * @category   test
32
 * @copyright  2012 Adrian Greeve
32
 * @copyright  2012 Adrian Greeve
33
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34
 */
34
 */
35
class csvclass_test extends \advanced_testcase {
35
final class csvclass_test extends \advanced_testcase {
Línea 36... Línea 36...
36
 
36
 
37
    protected $testdata = array();
37
    protected $testdata = array();
38
    protected $teststring = '';
38
    protected $teststring = '';
39
    protected $teststring2 = '';
39
    protected $teststring2 = '';
40
    protected $teststring3 = '';
40
    protected $teststring3 = '';
Línea 41... Línea 41...
41
    protected $teststring4 = '';
41
    protected $teststring4 = '';
-
 
42
 
Línea 42... Línea 43...
42
 
43
    protected function setUp(): void {
Línea 43... Línea 44...
43
    protected function setUp(): void {
44
        parent::setUp();
44
 
45