| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function testDefaultSettings() |
||
| 39 | { |
||
| 40 | $blockContext = $this->getBlockContext($this->blockService); |
||
| 41 | |||
| 42 | $this->assertSettings(array( |
||
| 43 | 'attr' => array(), |
||
| 44 | 'content' => false, |
||
| 45 | 'context' => false, |
||
| 46 | 'extra_cache_keys' => array(), |
||
| 47 | 'format' => false, |
||
| 48 | 'media' => false, |
||
| 49 | 'mediaId' => null, |
||
| 50 | 'orientation' => 'left', |
||
| 51 | 'template' => 'SonataMediaBundle:Block:block_feature_media.html.twig', |
||
| 52 | 'title' => false, |
||
| 53 | 'ttl' => 0, |
||
| 54 | 'use_cache' => true, |
||
| 55 | ), $blockContext); |
||
| 56 | } |
||
| 57 | } |
||
| 58 |