blob: 70f8788a047160a29abe4f2de19ee5a924a7fa84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* Elgg Core Unit Tester
*
* This class is to be extended by all Elgg unit tests. As such, any method here
* will be available to the tests.
*/
abstract class ElggCoreUnitTest extends UnitTestCase
{
/**
* Class constructor.
*
* A simple wrapper to call the parent constructor.
*/
public function __construct()
{
parent::__construct();
}
/**
* Class destructor.
*
* The parent does not provide a destructor, so including an explicit one here.
*/
public function __destruct()
{
}
}
|