Skip to content

Commit

Permalink
first test passing
Browse files Browse the repository at this point in the history
  • Loading branch information
rrd108 committed May 30, 2023
1 parent 2320a75 commit 4b47d0f
Show file tree
Hide file tree
Showing 6 changed files with 68,719 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/vendor/*
composer.phar
.vscode/launch.json

.phpunit.result.cache
22 changes: 22 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
>

<php>
<ini name="memory_limit" value="-1"/>
<env name="FIXTURE_SCHEMA_METADATA" value="./vendor/cakephp/cakephp/tests/schema.php"/>
</php>

<testsuites>
<testsuite name="tokenAuthentication">
<directory>tests/TestCase/</directory>
</testsuite>
</testsuites>

</phpunit>
Binary file added src/composer
Binary file not shown.
Loading

0 comments on commit 4b47d0f

Please sign in to comment.