Skip to content

Commit

Permalink
inited empty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jun 4, 2018
1 parent d70c9f3 commit b131749
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions phpunit.xml.dist
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" bootstrap="tests/_bootstrap.php">
<testsuites>
<testsuite name="Unit Test Suite">
<directory>./tests/unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>
5 changes: 5 additions & 0 deletions tests/_bootstrap.php
@@ -0,0 +1,5 @@
<?php

error_reporting(E_ALL);

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

0 comments on commit b131749

Please sign in to comment.