You are here

protected function GetSetMethodNormalizerTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\GetSetMethodNormalizerTest::setUp()

File

vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php, line 37

Class

GetSetMethodNormalizerTest

Namespace

Symfony\Component\Serializer\Tests\Normalizer

Code

protected function setUp() {
  $this->serializer = $this
    ->getMock(__NAMESPACE__ . '\\SerializerNormalizer');
  $this->normalizer = new GetSetMethodNormalizer();
  $this->normalizer
    ->setSerializer($this->serializer);
}