-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
31 lines (27 loc) · 1 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<project name="StockPlanner" default="phpunit" basedir="." description="Sistema de Controle de Estoque Inteligente">
<property name="message" value="Bem vindo a ferramenta de automatizacao de tarefas PHPING!"/>
<target name="tarefas">
<phingcall target="mensagem" />
<phingcall target="phpunit" />
</target>
<target name="test">
<phpunit pharlocation=".\vendor\bin\phpunit.bat" bootstrap=".\vendor\autoload.php" haltonfailure="true" printsummary="true">
<batchtest>
<fileset dir="testesPHP">
<include name="**/*Test.php"/>
</fileset>
</batchtest>
</phpunit>
</target>
<target name="phpunit" description="Run tests">
<exec executable=".\vendor\bin\phpunit.bat" passthru="true">
<arg value="--bootstrap"/>
<arg value=".\vendor\autoload.php"/>
<arg value="testesPHP"/>
</exec>
</target>
<target name="mensagem">
<echo msg="${message}"/>
</target>
</project>