File: Base.php

package info (click to toggle)
php-horde-ansel 3.0.10%2Bdebian1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,020 kB
  • sloc: php: 15,720; xml: 1,994; javascript: 1,784; makefile: 37; sh: 3
file content (42 lines) | stat: -rw-r--r-- 1,137 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
 * Test the Ansel_Image class.
 *
 * PHP version 5
 *
 * @category   Horde
 * @package    Ansel
 * @subpackage UnitTests
 * @author     Michael J Rubinsky <mrubinsk@horde.org>
 * @link       http://www.horde.org/apps/ansel
 * @license    http://www.horde.org/licenses/gpl GNU General Public License, version 2
 */

/**
 * Test the Ansel_Image class
 *
 * Copyright 2011-2017 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (GPLv2). If you did not
 * receive this file, see http://www.horde.org/licenses/gpl
 *
 * @category   Horde
 * @package    Ansel
 * @subpackage UnitTests
 * @author     Michael J Rubinsky <mrubinsk@horde.org>
 * @link       http://www.horde.org/apps/ansel
 * @license    http://www.horde.org/licenses/gpl GNU General Public License, version 2
 */
class Ansel_Unit_Base extends Ansel_TestCase
{
    static $setup;

    public static function setUpBeforeClass(): void
    {
        self::$setup = new Horde_Test_Setup();
        self::createBasicAnselSetup(self::$setup);
        self::createTestVFS(self::$setup);
        parent::setUpBeforeClass();
    }

}