<?php defined('SYSPATH') or die('No direct script access.');
// test_path/Example_Test.php
class Example_Test extends Unittest_Core {
public function example_passed_test()
{
$this->assert_true(TRUE);
}
public function example_failed_test()
{
$this->assert_true(FALSE);
}
}