Skip to content

Commit 5ccccba

Browse files
author
Alexander Obuhovich
committed
Adding initial version of test case class
1 parent bed8ce0 commit 5ccccba

File tree

5 files changed

+1614
-0
lines changed

5 files changed

+1614
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
phpunit.xml

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# QA-Tools / PHPUnit Extension
2+
3+
Extension to use [QA-Tools library](http://www.qa-tools.io) with [PHPUnit](https://phpunit.de/).
4+
5+
## Asking Questions
6+
7+
Feel free to ask any questions and share your experiences in the [Chat Room](https://gitter.im/qa-tools/qa-tools) and help to improve the documentation.
8+
9+
## Usage
10+
11+
...
12+
13+
## Installation
14+
15+
...
16+
17+
## Requirements
18+
19+
...
20+
21+
## License
22+
23+
QA-Tools / PHPUnit Extension is released under the BSD-3-Clause License. See the bundled [LICENSE](LICENSE) file for details.

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "qa-tools/phpunit-extension",
3+
"description": "QA-Tools extension for PHPUnit",
4+
"require": {
5+
"qa-tools/qa-tools": "^1.0",
6+
"aik099/phpunit-mink": "^2.1"
7+
},
8+
"license": "BSD-3-Clause",
9+
"authors": [
10+
{
11+
"name": "Alexander Obuhovich",
12+
"email": "aik.bold@gmail.com"
13+
}
14+
],
15+
"autoload-dev": {
16+
"psr-4": {
17+
"src\\QATools\\PHPUnitExtension\\": "QATools/PHPUnitExtension/"
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)