blob: efa8426dd3f7d1bc65380185c862db6744090a37 (
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
30
31
|
<?php
class ElggCoreEntityTest extends ElggCoreUnitTest {
public function __construct() {
}
public function setUp() {
}
public function tearDown() {
}
public funciton __destruct() {
}
public function testElggEntityConstructor() {
$this->assertTrue(FALSE);
}
}
// ElggEntity is an abstract class with no abstact methods.
class ElggEntityTest extends ElggEntity { }
|