PHP Classes

File: vendor/phpunit/phpunit/tests/bootstrap.php

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/phpunit/phpunit/tests/bootstrap.php   Download  
File: vendor/phpunit/phpunit/tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 4 years ago
Size: 1,473 bytes
 

Contents

Class file image Download
<?php
if (!defined('TEST_FILES_PATH')) {
   
define('TEST_FILES_PATH', __DIR__ . DIRECTORY_SEPARATOR . '_files' . DIRECTORY_SEPARATOR);
}

ini_set('precision', 14);
ini_set('serialize_precision', 14);

require_once
__DIR__ . '/../vendor/autoload.php';

// TODO: Figure out why (some of) these are required (the classes should be autoloaded instead)
require_once TEST_FILES_PATH . 'BeforeAndAfterTest.php';
require_once
TEST_FILES_PATH . 'BeforeClassAndAfterClassTest.php';
require_once
TEST_FILES_PATH . 'TestWithTest.php';
require_once
TEST_FILES_PATH . 'BeforeClassWithOnlyDataProviderTest.php';
require_once
TEST_FILES_PATH . 'DataProviderSkippedTest.php';
require_once
TEST_FILES_PATH . 'DataProviderDependencyTest.php';
require_once
TEST_FILES_PATH . 'DataProviderIncompleteTest.php';
require_once
TEST_FILES_PATH . 'InheritedTestCase.php';
require_once
TEST_FILES_PATH . 'NoTestCaseClass.php';
require_once
TEST_FILES_PATH . 'NoTestCases.php';
require_once
TEST_FILES_PATH . 'NotPublicTestCase.php';
require_once
TEST_FILES_PATH . 'NotVoidTestCase.php';
require_once
TEST_FILES_PATH . 'OverrideTestCase.php';
require_once
TEST_FILES_PATH . 'RequirementsClassBeforeClassHookTest.php';
require_once
TEST_FILES_PATH . 'NoArgTestCaseTest.php';
require_once
TEST_FILES_PATH . 'Singleton.php';
require_once
TEST_FILES_PATH . 'Mockable.php';
require_once
TEST_FILES_PATH . 'CoverageNamespacedFunctionTest.php';
require_once
TEST_FILES_PATH . 'NamespaceCoveredFunction.php';