public function StringListClassFormatterTest::testClassFormatter in Element Class Formatter 8
File
- tests/
src/ Functional/ StringListClassFormatterTest.php, line 19
Class
- StringListClassFormatterTest
- Functional tests for the string list with class formatter.
Namespace
Drupal\Tests\element_class_formatter\FunctionalCode
public function testClassFormatter() {
$formatter_settings = [
'class' => self::TEST_CLASS,
'list_type' => 'ol',
];
$field_config = $this
->createEntityField('string_list_class', 'string', $formatter_settings);
$entity = EntityTest::create([
$field_config
->getName() => [
0 => [
'value' => 'test string 1',
],
1 => [
'value' => 'test string 2',
],
],
]);
$entity
->save();
$this
->drupalGet($entity
->toUrl());
$assert_session = $this
->assertSession();
$assert_session
->elementExists('css', 'ol.' . self::TEST_CLASS);
// Test no wrapper is printed when the field is empty.
$entity = EntityTest::create();
$entity
->save();
$this
->drupalGet($entity
->toUrl());
$assert_session = $this
->assertSession();
$assert_session
->elementNotExists('css', '.field');
}