File tree Expand file tree Collapse file tree 3 files changed +39
-0
lines changed
Expand file tree Collapse file tree 3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ All Notable changes to `Backpack Generators` will be documented in this file
2020- Nothing
2121
2222
23+
24+ ## 1.1.1 - 2016-07-31
25+
26+ ### Added
27+ - Bogus unit tests. At least we'be able to use travis-ci for requirements errors, until full unit tests are done.
28+
29+
2330## 1.1.0 - 2016-05-22
2431
2532### Added
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit backupGlobals =" false"
3+ backupStaticAttributes =" false"
4+ bootstrap =" vendor/autoload.php"
5+ colors =" true"
6+ convertErrorsToExceptions =" true"
7+ convertNoticesToExceptions =" true"
8+ convertWarningsToExceptions =" true"
9+ processIsolation =" false"
10+ stopOnFailure =" false"
11+ syntaxCheck =" false"
12+ >
13+ <testsuites >
14+ <testsuite name =" Package Test Suite" >
15+ <directory suffix =" .php" >./tests/</directory >
16+ </testsuite >
17+ </testsuites >
18+ </phpunit >
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ class BaseTest extends PHPUnit_Framework_TestCase
4+ {
5+ /**
6+ * A basic test example.
7+ *
8+ * @return void
9+ */
10+ public function testExample ()
11+ {
12+ $ this ->assertTrue (true );
13+ }
14+ }
You can’t perform that action at this time.
0 commit comments