Beispiel #1
0
 public function testGetCss()
 {
     $colorModel = new Color($this->container);
     $css = $colorModel->getCss();
     $this->assertStringStartsWith('div.color-yellow {', $css);
     $this->assertStringEndsWith('td.color-amber { background-color: #ffe082}', $css);
 }