Skip to content

Commit

Permalink
Merge pull request #1 from lode/travis
Browse files Browse the repository at this point in the history
unit test via travis
  • Loading branch information
lode committed Feb 5, 2019
2 parents 472b9c3 + a641f84 commit 6d41056
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/UnitTest.php
@@ -0,0 +1,13 @@
<?php

use PHPUnit\Framework\TestCase;

class UnitTest extends TestCase {
public function testSuccess() {
$this->assertTrue(true);
}

public function testAnything() {
$this->assertSame(42, 42);
}
}

0 comments on commit 6d41056

Please sign in to comment.