This repository has been archived by the owner on Oct 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
1,720 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# test-integration | ||
Integration testing package for Joomla | ||
|
||
## Folder Structure | ||
|
||
* `core` - Registered to Joomla's autoloader by the unit testing bootstrap file, contains all classes named `Test*` and primarily contains TestCase classes extending the PHPUnit Framework and classes to generate mock objects for several classes. | ||
* `schema` - This folder contains all SQL schema for setting up the environment for tests using `TestCaseDatabase`. The `ddl.sql` file is used by `TestCaseDatabase` to create a SQLite in-memory database which is destroyed at the end of the test cycle. The other SQL files are specific to each database vendor and require you to manually create the databases. | ||
* `stubs` - Contains miscellaneous test data used throughout the suite. | ||
* `database` - CSV files loaded by various tests to populate the database with test data | ||
* `discover*` - Stubs used with `JLoaderTest` | ||
* `suites` - The actual test classes | ||
* `tmp` - A temporary directory used for filesystem operations in the test suite | ||
* `bootstrap.php` - The testing bootstrap called when PHPUnit is run |
Oops, something went wrong.