31 lines
670 B
PHP
31 lines
670 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/TestBase.php';
|
|
|
|
/**
|
|
* @author Jason M. Felice <jason.m.felice@gmail.com>
|
|
* @package Turba
|
|
* @subpackage UnitTests
|
|
*/
|
|
class Turba_ToDo_GroupTest extends Turba_TestBase {
|
|
|
|
var $group;
|
|
|
|
function setUp()
|
|
{
|
|
$this->markTestIncomplete('Convert to use Horde_Test.');
|
|
parent::setUp();
|
|
$this->setUpDatabase();
|
|
|
|
$driver = $this->getDriver();
|
|
$this->group = $driver->getObject('fff');
|
|
$this->assertOk($this->group);
|
|
}
|
|
|
|
function test_listMembers_returns_objects_sorted_according_to_parameters()
|
|
{
|
|
$this->assertSortsList(array($this->group, 'listMembers'));
|
|
}
|
|
|
|
}
|