Tests: Update infrastructure & add travis config (#100)

* Tests: Move tests infrastructure, set up travis

Consolidates the composer files so we can run install once in travis.

* Return empty array if no values are $_POST'ed to the form

Fixes an issue with tests + null values in logs

* Clean up some naming & create helper functions for tests

* Debug travis

* Remove debug

* Fix notices on form

* Turn on multisite flag
This commit is contained in:
Kelly Dwan 2019-11-15 17:40:53 -05:00 committed by GitHub
parent 5c2041442a
commit 03949905c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 2705 additions and 2583 deletions

19
phpunit.xml.dist Normal file
View file

@ -0,0 +1,19 @@
<phpunit
bootstrap="plugins/wporg-5ftf/tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
</php>
<testsuites>
<testsuite name="Five for the Future Plugin">
<directory prefix="test-" suffix=".php">
./plugins/wporg-5ftf/tests/
</directory>
</testsuite>
</testsuites>
</phpunit>