diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2015-01-19 11:59:22 +0100 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2015-01-19 11:59:22 +0100 |
commit | f3052b454277b2d54669943f7c0ca5d4b4af50ab (patch) | |
tree | f20ced7dd07544a765de352b38e9b80def9eacaf /tests/Wallabag | |
parent | e342acf7baf72e3be0fdcd8aac04eebb5c0a16a8 (diff) | |
download | wallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.tar.gz wallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.tar.zst wallabag-f3052b454277b2d54669943f7c0ca5d4b4af50ab.zip |
foo test
Diffstat (limited to 'tests/Wallabag')
-rw-r--r-- | tests/Wallabag/Wallabag/Tests/EntryTest.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/Wallabag/Wallabag/Tests/EntryTest.php b/tests/Wallabag/Wallabag/Tests/EntryTest.php new file mode 100644 index 00000000..2c3bf2fc --- /dev/null +++ b/tests/Wallabag/Wallabag/Tests/EntryTest.php | |||
@@ -0,0 +1,19 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * wallabag, self hostable application allowing you to not miss any content anymore | ||
4 | * | ||
5 | * @category wallabag | ||
6 | * @author Nicolas Lœuillet <nicolas@loeuillet.org> | ||
7 | * @copyright 2013 | ||
8 | * @license http://opensource.org/licenses/MIT see COPYING file | ||
9 | */ | ||
10 | |||
11 | namespace wallabag\wallabag\Tests; | ||
12 | |||
13 | class EntryTest extends \PHPUnit_Framework_TestCase | ||
14 | { | ||
15 | public function testFoo() | ||
16 | { | ||
17 | $this->assertTrue(true); | ||
18 | } | ||
19 | } | ||