Skip to content

Commit 6da018f

Browse files
committedApr 30, 2015
Move tests into namespace
1 parent 00fa3b9 commit 6da018f

9 files changed

+180
-404
lines changed
 

‎.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
/vendor/
2-
/build/
3-
cache.properties
42
/tests/cache/
53
/tests/logs/

‎build.xml

-178
This file was deleted.

‎composer.lock

+177-177
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎phpdox.xml

-25
This file was deleted.

‎phpmd.xml

-11
This file was deleted.

‎phpunit.xml.dist

-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,6 @@
77
</testsuite>
88
</testsuites>
99

10-
<logging>
11-
<log type="coverage-html" target="build/coverage"/>
12-
<log type="coverage-xml" target="build/coverage/xml" />
13-
<log type="coverage-clover" target="build/logs/clover.xml"/>
14-
<log type="coverage-crap4j" target="build/logs/crap4j.xml"/>
15-
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
16-
</logging>
17-
1810
<php>
1911
<server name="KERNEL_DIR" value="tests/" />
2012
</php>

‎tests/Mcfedr/JsonFormBundle/Controller/JsonControllerCheckboxTest.php ‎tests/Mcfedr/JsonFormBundle/Tests/Controller/JsonControllerCheckboxTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Mcfedr\JsonFormBundle\Controller;
3+
namespace Mcfedr\JsonFormBundle\Tests\Controller;
44

55
use Mcfedr\JsonFormBundle\Controller\JsonController;
66
use Symfony\Component\Form\Extension\Validator\ValidatorExtension;

‎tests/Mcfedr/JsonFormBundle/Controller/JsonControllerTest.php ‎tests/Mcfedr/JsonFormBundle/Tests/Controller/JsonControllerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Mcfedr\JsonFormBundle\Controller;
3+
namespace Mcfedr\JsonFormBundle\Tests\Controller;
44

55
use Mcfedr\JsonFormBundle\Controller\JsonController;
66
use Symfony\Component\Form\Extension\Validator\ValidatorExtension;

‎tests/Mcfedr/JsonFormBundle/Controller/TestControllerTest.php ‎tests/Mcfedr/JsonFormBundle/Tests/Controller/TestControllerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Mcfedr\JsonFormBundle\Controller;
3+
namespace Mcfedr\JsonFormBundle\Tests\Controller;
44

55
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
66

0 commit comments

Comments
 (0)
Please sign in to comment.