'600px', 'background' => '#ffffff', 'padding' => [ 'bottom' => '0px', 'left' => '0px', 'right' => '0px', 'top' => '0px', ], ]; $topLevel = $this->createMock(TopLevelPreprocessor::class); $topLevel->expects($this->once())->method('preprocess')->willReturn([]); $cleanup = $this->createMock(CleanupPreprocessor::class); $cleanup->expects($this->once())->method('preprocess')->willReturn([]); $blocksWidth = $this->createMock(BlocksWidthPreprocessor::class); $blocksWidth->expects($this->once())->method('preprocess')->willReturn([]); $typography = $this->createMock(TypographyPreprocessor::class); $typography->expects($this->once())->method('preprocess')->willReturn([]); $secondPreprocessor = $this->createMock(TopLevelPreprocessor::class); $secondPreprocessor->expects($this->once())->method('preprocess')->willReturn([]); $preprocessManager = new PreprocessManager($cleanup, $topLevel, $blocksWidth, $typography); $preprocessManager->registerPreprocessor($secondPreprocessor); verify($preprocessManager->preprocess([], $layoutStyles))->equals([]); } }