Skip to content

Remove dead tests fixtures #32623

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use Symfony\Component\Console\Command\Command;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* @group legacy
Expand Down Expand Up @@ -123,7 +122,3 @@ public function testProcessPrivateServicesWithSameCommand()
class MyCommand extends Command
{
}

class ExtensionPresentBundle extends Bundle
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,3 @@ public function testIntegrationNoUser()
$this->assertSame([null], $argumentResolver->getArguments(Request::create('/'), function (UserInterface $user = null) {}));
}
}

abstract class DummyUser implements UserInterface
{
}

abstract class DummySubUser extends DummyUser
{
}
24 changes: 0 additions & 24 deletions src/Symfony/Component/Debug/Tests/MockExceptionHandler.php

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -116,20 +116,6 @@ public function __construct(CollisionInterface $collision)
}
}

class CannotBeAutowiredForwardOrder
{
public function __construct(CollisionA $a, CollisionInterface $b, CollisionB $c)
{
}
}

class CannotBeAutowiredReverseOrder
{
public function __construct(CollisionA $a, CollisionB $c, CollisionInterface $b)
{
}
}

class Lille
{
}
Expand Down
11 changes: 0 additions & 11 deletions src/Symfony/Component/HttpFoundation/Tests/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1001,14 +1001,3 @@ public function __toString()
class DefaultResponse extends Response
{
}

class ExtendedResponse extends Response
{
public function setLastModified(\DateTime $date = null)
{
}

public function getDate()
{
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -756,43 +756,6 @@ public function otherMethod()
}
}

class GetCamelizedDummy
{
private $kevinDunglas;
private $fooBar;
private $bar_foo;

public function __construct($kevinDunglas = null)
{
$this->kevinDunglas = $kevinDunglas;
}

public function getKevinDunglas()
{
return $this->kevinDunglas;
}

public function setFooBar($fooBar)
{
$this->fooBar = $fooBar;
}

public function getFooBar()
{
return $this->fooBar;
}

public function setBar_foo($bar_foo)
{
$this->bar_foo = $bar_foo;
}

public function getBar_foo()
{
return $this->bar_foo;
}
}

class ObjectConstructorArgsWithPrivateMutatorDummy
{
private $foo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,18 +497,6 @@ public function getBar()
}
}

class PropertyCamelizedDummy
{
private $kevinDunglas;
public $fooBar;
public $bar_foo;

public function __construct($kevinDunglas = null)
{
$this->kevinDunglas = $kevinDunglas;
}
}

class StaticPropertyDummy
{
private static $property = 'value';
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.