Skip to content

Commit c7d5e21

Browse files
committedAug 24, 2016
first test case
1 parent 378c6f4 commit c7d5e21

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed
 

‎.gitignore

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
1-
2-
node_modules/
3-
.idea/
4-
5-
# Laravel 4 specific
6-
bootstrap/compiled.php
7-
app/storage/
8-
9-
# Laravel 5 & Lumen specific
10-
bootstrap/cache/
11-
storage/
12-
.env.*.php
13-
.env.php
14-
.env
15-
.env.example
1+
/vendor
2+
/.env
3+
composer.phar
4+
composer.lock
5+
.DS_Store
6+
Thumbs.db

‎phpunit.xml ‎phpunit.xml.dist

File renamed without changes.

‎tests/DemoTest.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Tests;
4+
5+
class DemoTest extends \PHPUnit_Framework_TestCase
6+
{
7+
public function testSomethingIsTrue()
8+
{
9+
$this->assertTrue(true);
10+
}
11+
}

0 commit comments

Comments
 (0)
Please sign in to comment.