Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dmj
PicaAuth
Commits
3eb8f0c4
Commit
3eb8f0c4
authored
May 12, 2015
by
David Maus
Browse files
Add PHPUnit configuration
parent
2ad262ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
phpunit.xml
0 → 100644
View file @
3eb8f0c4
<?xml version="1.0" encoding="utf-8"?>
<phpunit
bootstrap=
"tests/bootstrap.php"
strict=
"true"
>
<testsuite
name=
"Unit tests"
>
<directory
suffix=
"Test.php"
>
tests/unit-tests
</directory>
</testsuite>
</phpunit>
tests/bootstrap.php
0 → 100644
View file @
3eb8f0c4
<?php
if
(
$autoload
=
stream_resolve_include_path
(
'vendor/autoload.php'
))
{
require
(
$autoload
);
}
define
(
'APP_TESTDIR'
,
__DIR__
);
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment