1<?php
2
3require_once __DIR__ . '/TestBase.php';
4
5/**
6 * @author  Jason M. Felice <jason.m.felice@gmail.com>
7 * @package Turba
8 * @subpackage UnitTests
9 */
10class Turba_ToDo_GroupTest extends Turba_TestBase {
11
12    var $group;
13
14    function setUp()
15    {
16        $this->markTestIncomplete('Convert to use Horde_Test.');
17        parent::setUp();
18        $this->setUpDatabase();
19
20        $driver = $this->getDriver();
21        $this->group = $driver->getObject('fff');
22        $this->assertOk($this->group);
23    }
24
25    function test_listMembers_returns_objects_sorted_according_to_parameters()
26    {
27        $this->assertSortsList(array($this->group, 'listMembers'));
28    }
29
30}
31