Tests the CSS Minify settings form.

@group advagg

Hierarchy

  • class \Drupal\Tests\advagg_css_minify\Kernel\Form\SettingsFormTest extends \Drupal\KernelTests\KernelTestBase

Expanded class hierarchy of SettingsFormTest

File

advagg_css_minify/tests/src/Kernel/Form/SettingsFormTest.php, line 14

Namespace

Drupal\Tests\advagg_css_minify\Kernel\Form
View source
class SettingsFormTest extends KernelTestBase {
    
    /**
     * The CSS Minify settings form object under test.
     *
     * @var \Drupal\advagg_css_minify\Form\SettingsForm
     */
    protected $settingsForm;
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'system',
        'advagg',
        'advagg_css_minify',
    ];
    
    /**
     * {@inheritdoc}
     *
     * @covers ::__construct
     */
    protected function setUp() {
        parent::setUp();
        $this->installConfig(static::$modules);
        $this->settingsForm = SettingsForm::create($this->container);
    }
    
    /**
     * Tests for \Drupal\advagg_css_minify\Form\SettingsForm.
     */
    public function testSettingsForm() {
        $this->assertInstanceOf(FormInterface::class, $this->settingsForm);
        $id = $this->settingsForm
            ->getFormId();
        $this->assertEquals('advagg_css_minify_settings', $id);
        $method = new \ReflectionMethod(SettingsForm::class, 'getEditableConfigNames');
        $method->setAccessible(TRUE);
        $name = $method->invoke($this->settingsForm);
        $this->assertEquals([
            'advagg_css_minify.settings',
        ], $name);
    }

}

Members

Title Sort descending Modifiers Object type Summary
SettingsFormTest::$modules protected static property Modules to enable.
SettingsFormTest::$settingsForm protected property The CSS Minify settings form object under test.
SettingsFormTest::setUp protected function @covers ::__construct
SettingsFormTest::testSettingsForm public function Tests for \Drupal\advagg_css_minify\Form\SettingsForm.