settings = ClientSettings::buildClientSettings(CompanySettings::defaults(), ClientSettings::defaults()); } public function testGroupsPropertiesExistsResponses() { $this->assertTrue(property_exists($this->settings, 'design')); } public function testPropertyValueAccessors() { $this->settings->translations = (object) ['hello' => 'world']; $this->assertEquals('world', $this->settings->translations->hello); } public function testPropertyIsSet() { $this->assertFalse(isset($this->settings->translations->nope)); } }