public function test_get_body_classes()
 {
     // Exercise SUT.
     $this->testpage->add_body_classes(array('aclassname', 'anotherclassname'));
     // Validated.
     $this->assertSame('aclassname anotherclassname', $this->testpage->bodyclasses);
 }