1<?php // this is an autogenerated file - do not edit 2require_once 'phar://phpunit-example-extension-1.0.0.phar' . '/phpunit-example-extension/TestCaseTrait.php'; 3__HALT_COMPILER(); ?> 4�$phpunit-example-extension-1.0.0.pharLICENSE�78X�����manifest.xml7�78X7Gy�;�+phpunit-example-extension/TestCaseTrait.php\�78X\V��O�PHPUnit Example Extension 5 6Copyright (c) 2016, Sebastian Bergmann <sebastian@phpunit.de>. 7All rights reserved. 8 9Redistribution and use in source and binary forms, with or without 10modification, are permitted provided that the following conditions 11are met: 12 13 * Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 16 * Redistributions in binary form must reproduce the above copyright 17 notice, this list of conditions and the following disclaimer in 18 the documentation and/or other materials provided with the 19 distribution. 20 21 * Neither the name of Sebastian Bergmann nor the names of his 22 contributors may be used to endorse or promote products derived 23 from this software without specific prior written permission. 24 25THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 26"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 27LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 28FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 29COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 30INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 31BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 32LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 33CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 35ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 36POSSIBILITY OF SUCH DAMAGE. 37<?xml version="1.0" encoding="utf-8" ?> 38<phar xmlns="https://phar.io/xml/manifest/1.0"> 39 <contains name="phpunit/phpunit-example-extension" version="1.0.0" type="extension"> 40 <extension for="phpunit/phpunit" compatible="^5.7"/> 41 </contains> 42 43 <copyright> 44 <author name="Sebastian Bergmann" email="sebastian@phpunit.de"/> 45 <license type="BSD-3-Clause" url="https://github.com/sebastianbergmann/phpunit-example-extension/blob/master/LICENSE"/> 46 </copyright> 47 48 <requires> 49 <php version="^5.6 || ^7.0"/> 50 </requires> 51</phar> 52<?php 53/* 54 * This file is part of the PHPUnit Example Extension. 55 * 56 * (c) Sebastian Bergmann <sebastian@phpunit.de> 57 * 58 * For the full copyright and license information, please view the LICENSE 59 * file that was distributed with this source code. 60 */ 61 62namespace PHPUnit\ExampleExtension; 63 64trait TestCaseTrait 65{ 66 /** 67 * @var bool 68 */ 69 private $initialized = false; 70 71 /** 72 * @before 73 */ 74 protected function init() 75 { 76 $this->initialized = true; 77 } 78 79 public function assertExampleExtensionInitialized() 80 { 81 $this->assertTrue($this->initialized); 82 } 83} 84f��1�!=f�����!1����Xۯ��c��Q�BM�E��@fs��×��\?�n���i9+�GBMB