_object = new \Magento\Framework\View\Asset\PropertyGroup(['test_property' => 'test_value']); } public function testGetProperties() { $this->assertEquals(['test_property' => 'test_value'], $this->_object->getProperties()); } public function testGetProperty() { $this->assertEquals('test_value', $this->_object->getProperty('test_property')); $this->assertNull($this->_object->getProperty('non_existing_property')); } }