Skip to content

Commit

Permalink
test: integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clphillips committed Jun 5, 2017
1 parent 0a881f4 commit bd5e2b4
Show file tree
Hide file tree
Showing 6 changed files with 782 additions and 716 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"email": "[email protected]"
}],
"autoload": {
"psr-4": {"Phpaes\\": "src/"}
"psr-4": {"PhpAes\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Phpaes\\Test\\": "tests/"}
"psr-4": {"PhpAes\\Test\\": "tests/"}
},
"require": {
"php": ">=5.3"
Expand Down
23 changes: 23 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./vendor/autoload.php"
backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="true"
forceCoversAnnotation="true"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>
Loading

0 comments on commit bd5e2b4

Please sign in to comment.