Skip to content

Commit 513f3bc

Browse files
committed
Broken Build
1 parent d7cff92 commit 513f3bc

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: php
2+
php:
3+
- 5.5
4+
- 5.4
5+
- hhvm

Test.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
class Test extends PHPUnit_Framework_TestCase
4+
{
5+
public function testOnePlusOne() {
6+
$this->assertEquals(1,1+1);
7+
}
8+
}
9+
10+
?>

0 commit comments

Comments
 (0)