Skip to content

Commit 0380e37

Browse files
committed
added bogus unit test
1 parent 67431c9 commit 0380e37

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

phpunit.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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>

tests/BaseTest.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
}

0 commit comments

Comments
 (0)