File: EchoTest.xml

package info (click to toggle)
phing 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 9,340 kB
  • sloc: php: 59,826; xml: 9,770; sql: 78; makefile: 39; sh: 14
file content (47 lines) | stat: -rw-r--r-- 1,095 bytes parent folder | download | duplicates (3)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<project name="EchoTaskTest" default="test">
    <target name="testPropertyMsg">
        <echo msg="This is a msg"/>
    </target>

    <target name="testPropertyMessage">
        <echo msg="This is a message"/>
    </target>

    <target name="testInlineText">
        <echo>This is a nested inline text message</echo>
    </target>

    <target name="testFileset">
        <echo>
            <fileset dir="./">
                <include name="**"/>
            </fileset>
        </echo>
    </target>

    <target name="testDirset">
        <echo>
            <dirset dir="./../">
                <include name="**"/>
            </dirset>
        </echo>
    </target>

    <target name="testFilesetMsg">
        <echo msg="foo">
            <fileset dir="./">
                <include name="**"/>
            </fileset>
        </echo>
    </target>

    <target name="testFilesetInline">
        <echo>
            <fileset dir="./">
                <include name="**"/>
            </fileset>
            foo
        </echo>
    </target>
</project>