Skip to content

Commit

Permalink
Moved test classes to own namespace Phing\Test\
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 committed Apr 1, 2021
1 parent e5b7752 commit 2a9fda7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/etc/tasks/property.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</property>
</target>

<taskdef name="hangdetectorproperty" classname="Phing\Support\HangDetectorPropertyTask" />
<taskdef name="hangdetectorproperty" classname="Phing\Test\Support\HangDetectorPropertyTask" />
<target name="testCircularDefinition1">
<property name="testprop2" value="${testprop1}" />
<hangdetectorproperty file="property2.properties"/>
Expand Down
6 changes: 3 additions & 3 deletions tests/etc/tasks/taskdef.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</target>

<target name="noName">
<taskdef classname="Phing\Support\TaskdefTestSimpleTask"/>
<taskdef classname="Phing\Test\Support\TaskdefTestSimpleTask"/>
</target>

<target name="classNotFound">
Expand All @@ -26,7 +26,7 @@
<pathelement dir="../../classes" />
</path>

<taskdef name="global" classname="Phing\Support\TaskdefTestSimpleTask">
<taskdef name="global" classname="Phing\Test\Support\TaskdefTestSimpleTask">
<classpath refid="testclasses" />
</taskdef>

Expand All @@ -37,7 +37,7 @@
</target>

<target name="testLocal">
<taskdef name="local" classname="Phing\Support\TaskdefTestSimpleTask">
<taskdef name="local" classname="Phing\Test\Support\TaskdefTestSimpleTask">
<classpath refid="testclasses" />
</taskdef>
<local id="local">
Expand Down

0 comments on commit 2a9fda7

Please sign in to comment.