Esempio n. 1
0
 /** @test */
 public function TestThemeProperty()
 {
     $surface = new Nether\Surface();
     $this->AssertTrue($surface->GetTheme() === 'testing', 'sucked up the correct theme from config');
     $surface->SetTheme('still-testing');
     $this->AssertTrue($surface->GetTheme() === 'still-testing', 'explicit set theme for surface instance');
     return;
 }