__construct(); } /** * Called before each test method. */ public function setUp() { } /** * Called after each test method. */ public function tearDown() { } /** * Called after each test object. */ public function __destruct() { // hook into ElggCoreUnitTest::__destruct(); $this->__destruct(); } /** * A basic test that will be called and fail. */ public function testElggEntityConstructor() { $this->assertTrue(FALSE); } }