Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-php-library
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sinan
mongo-php-library
Commits
dcf47147
Commit
dcf47147
authored
Dec 10, 2014
by
Jeremy Mikola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add default PHPUnit configuration
parent
4773e623
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
.gitignore
.gitignore
+1
-0
phpunit.xml.dist
phpunit.xml.dist
+26
-0
No files found.
.gitignore
View file @
dcf47147
...
@@ -5,3 +5,4 @@ composer.phar
...
@@ -5,3 +5,4 @@ composer.phar
composer.lock
composer.lock
/vendor/
/vendor/
php.ini
php.ini
phpunit.xml
phpunit.xml.dist
0 → 100644
View file @
dcf47147
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.3/phpunit.xsd"
backupGlobals=
"false"
backupStaticAttributes=
"false"
colors=
"true"
convertErrorsToExceptions=
"true"
convertNoticesToExceptions=
"true"
convertWarningsToExceptions=
"true"
stopOnFailure=
"false"
syntaxCheck=
"false"
bootstrap=
"vendor/autoload.php"
>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
</php>
<testsuites>
<testsuite
name=
"MongoDB CRUD Test Suite"
>
<directory>
./tests/
</directory>
</testsuite>
</testsuites>
</phpunit>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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