public function onSetup()
 {
     $this->_mockLogger = $this->mock(tubepress_api_log_LoggerInterface::_);
     $this->_mockManifestFinder = $this->mock('tubepress_internal_boot_helper_uncached_contrib_ManifestFinder');
     $this->_mockCompiler = $this->mock('tubepress_internal_boot_helper_uncached_Compiler');
     $this->_mockContainerBuilder = $this->mock('tubepress_internal_ioc_ContainerBuilder');
     $this->_mockContainerDumper = $this->mock('Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface');
     $this->_mockBootSettings = $this->mock('tubepress_internal_boot_BootSettings');
     $this->_mockAddonFactory = $this->mock('tubepress_internal_boot_helper_uncached_contrib_AddonFactory');
     $this->_mockLogger->shouldReceive('isEnabled')->once()->andReturn(true);
     $this->_mockLogger->shouldReceive('debug')->atLeast(1);
     $this->_sut = new tubepress_internal_boot_helper_uncached_UncachedContainerSupplier($this->_mockLogger, $this->_mockManifestFinder, $this->_mockAddonFactory, $this->_mockCompiler, $this->_mockBootSettings);
     $this->_sut->__setContainerBuilder($this->_mockContainerBuilder);
     $this->_sut->__setContainerDumper($this->_mockContainerDumper);
     $this->_sut->__setSerializer(array($this, '__callbackSerialize'));
     Mockery::ducktype();
 }
 /**
  * @expectedException \Mockery\Exception
  */
 public function testDucktypeConstraintThrowsExceptionWhenConstraintUnmatched()
 {
     $this->mock->shouldReceive('foo')->with(Mockery::ducktype('quack', 'swim'))->once();
     $this->mock->foo(new Mockery_Duck_Nonswimmer());
     $this->container->mockery_verify();
 }