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.
2 parents 622b2ea + 7255f3b commit ca7b16aCopy full SHA for ca7b16a
build.xml
@@ -1,17 +1,9 @@
1
<?xml version="1.0" encoding="UTF-8" ?>
2
3
-<project name="opentok" default="hello">
4
-
5
- <!-- ============================================ -->
6
- <!-- (DEFAULT) Target: hello -->
7
8
- <target name="hello" description="Says Hello">
9
- <echo msg="Hello, world!" />
10
- </target>
+<project name="opentok" default="test">
11
12
<target name="test" description="run unit tests">
13
- <php expression="include('./vendor/autoload.php')"/>
14
- <phpunit configuration="./phpunit.xml.dist" printsummary="true"/>
+ <exec command="./vendor/bin/phpunit" passthru="true" checkreturn="true" />
15
</target>
16
17
</project>
0 commit comments