1<?php
2/**
3 * Copyright 2014-2016 Horde LLC (http://www.horde.org/)
4 *
5 * See the enclosed file COPYING for license information (LGPL). If you
6 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
7 *
8 * @category   Horde
9 * @copyright  2014-2016 Horde LLC
10 * @license    http://www.horde.org/licenses/lgpl21 LGPL 2.1
11 * @package    Mail_Autoconfig
12 * @subpackage UnitTests
13 */
14
15/**
16 * Tests for the Thunderbird Driver.
17 *
18 * @author     Michael Slusarz <slusarz@horde.org>
19 * @category   Horde
20 * @copyright  2014-2016 Horde LLC
21 * @ignore
22 * @license    http://www.horde.org/licenses/lgpl21 LGPL 2.1
23 * @package    Mail_Autoconfig
24 * @subpackage UnitTests
25 */
26class Horde_Mail_Autoconfig_Driver_ThunderbirdTest
27extends Horde_Mail_Autoconfig_Driver_TestBase
28{
29    protected function _getDriver()
30    {
31        return new Horde_Mail_Autoconfig_Driver_Thunderbird();
32    }
33
34}
35