We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b5579 commit d918030Copy full SHA for d918030
tests/PHPJasper/PHPJasperTest.php
@@ -104,6 +104,14 @@ public function testExecuteWithCompile()
104
$jasper->compile('hello_world.jrxml')->execute();
105
}
106
107
+ public function testExecute()
108
+ {
109
+ $jasper = new PHPJasper();
110
+ $actual = $jasper->compile(__DIR__ . '/test.jrxml')->execute();
111
+
112
+ $this->assertInternalType('array', $actual);
113
+ }
114
115
public function testResourceDirectoryException()
116
{
117
$this->expectException(\PHPJasper\Exception\InvalidResourceDirectory::class);
0 commit comments