Same name in other branches
- 6.0.x tests/src/Kernel/Form/SettingsFormTest.php \Drupal\Tests\advagg\Kernel\Form\SettingsFormTest::testCacheLevelOption()
- 8.x-4.x tests/src/Kernel/Form/SettingsFormTest.php \Drupal\Tests\advagg\Kernel\Form\SettingsFormTest::testCacheLevelOption()
Test the cache level options.
File
-
tests/
src/ Kernel/ Form/ SettingsFormTest.php, line 45
Class
- SettingsFormTest
- Class for test Drupal\advagg\Form\SettingsForm.
Namespace
Drupal\Tests\advagg\Kernel\FormCode
public function testCacheLevelOption() {
$options = $this->settingsForm
->getCacheLevelOptions();
$this->assertIsArray($options);
$this->assertTrue(in_array('Development', $options));
$this->assertTrue(in_array('High', $options));
}