/** * Test get field value. */ public function testGetFieldValue() { $this->assertEquals(null, $this->plugin->getFieldValue('field1')); $this->plugin->getConfiguration()->setFieldValue('field1', 'New value'); $this->assertEquals('New value', $this->plugin->getFieldValue('field1')); }