1<?php
2/**
3 * @requires extension I_DO_NOT_EXIST
4 */
5class Issue1374Test extends PHPUnit_Framework_TestCase
6{
7    protected function setUp()
8    {
9        print __FUNCTION__;
10    }
11
12    public function testSomething()
13    {
14        $this->fail('This should not be reached');
15    }
16
17    protected function tearDown()
18    {
19        print __FUNCTION__;
20    }
21}
22