PHP Classes

File: tests/bootstrap.php

Recommend this page to a friend!
  Classes of Matous Nemec   PHP IP Address Validation   tests/bootstrap.php   Download  
File: tests/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP IP Address Validation
Validate and normalize IPv4 and IPv6 addresses
Author: By
Last change:
Date: 3 years ago
Size: 682 bytes
 

Contents

Class file image Download
<?php

define
('SRC_DIR', __DIR__ . '/../src/');
define('DISABLE_AUTOLOAD', true);

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

@
mkdir(__DIR__ . "/log");
@
mkdir(__DIR__ . "/tmp");

if (
file_exists(__DIR__ . '/environment.php')) {
    require_once
__DIR__ . '/environment.php';
}

if (!
class_exists('Tester\Assert')) {
    echo
"Install Nette Tester using `composer update --dev`\n";
    exit(
1);
}

define("TEMP_DIR", __DIR__ . '/tmp');

Tester\Helpers::purge(TEMP_DIR);

Tester\Environment::setup();

$loader = new Nette\Loaders\RobotLoader;
$loader->addDirectory(__DIR__ . '/../src');
$loader->setCacheStorage(new Nette\Caching\Storages\FileStorage(TEMP_DIR));
$loader->register();