Skip to content

Commit

Permalink
Test file organization cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkiessling committed Feb 26, 2017
1 parent 9072ee9 commit b069e99
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Tests\AppBundle\Controller;
namespace Tests\AppBundle\Functional;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class ContentControllerWebTest extends WebTestCase
class ContentPagesFunctionalWebTest extends WebTestCase
{
public function testImprint()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<?php

namespace Tests\AppBundle\Controller;
namespace Tests\AppBundle\Functional;

use AppBundle\Entity\Testresult;
use Tests\AppBundle\TestHelpers;
use Doctrine\ORM\EntityManager;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class TestcasesControllerWebTest extends WebTestCase
class TestcasesFunctionalWebTest extends WebTestCase
{
use TestHelpers;

Expand Down Expand Up @@ -221,7 +220,7 @@ public function testIndexDisableAndEnableTestcase()
$this->assertSame('Enabled', trim($crawler->filter('td.testcase-entry-cell span.label')->eq(1)->text()));
}

public function testEdit()
public function testTestcaseEdit()
{
$this->resetDatabase();
$client = $this->getClientThatRegisteredAndActivatedADemoUser();
Expand Down

0 comments on commit b069e99

Please sign in to comment.