Skip to content

Commit e31635e

Browse files
authored
Merge pull request #33 from geekcom/master
Merge Developer into Master
2 parents f959145 + 3e2754a commit e31635e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

tests/JasperPHP/JasperPHPServiceProviderTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<?php
2+
namespace JasperPHP;
3+
4+
use PHPUnit_Framework_TestCase;
5+
26
class JasperPHPServiceProviderTest extends PHPUnit_Framework_TestCase
37
{
48

@@ -7,6 +11,7 @@ class JasperPHPServiceProviderTest extends PHPUnit_Framework_TestCase
711
*/
812
public function testRegister()
913
{
14+
$this->assertTrue(true);
1015

1116
}
1217

tests/JasperPHP/JasperPHPTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<?php
22
namespace JasperPHP;
3+
4+
use PHPUnit_Framework_TestCase;
5+
6+
class JasperPHPTest extends PHPUnit_Framework_TestCase
37
/**
48
* Class JasperPHPTest
59
*
610
* @author Rafael Queiroz <[email protected]>
711
* @package JasperPHP
812
*/
913
class JasperPHPTest extends \PHPUnit_Framework_TestCase
14+
1015
{
1116

1217
/**
@@ -62,9 +67,6 @@ public function testExecuteWithCompile()
6267
$jasper->compile('hello_world.jrxml')->execute();
6368
}
6469

65-
/**
66-
*
67-
*/
6870
public function testListParametersWithWrongInput()
6971
{
7072
$this->setExpectedException(\JasperPHP\Exception\InvalidInputFile::class);

0 commit comments

Comments
 (0)