Endnote8DecodeTest.php in Bibliography & Citation 8
File
modules/bibcite_endnote/tests/src/Kernel/Endnote8DecodeTest.php
View source
<?php
namespace Drupal\Tests\bibcite_endnote\Kernel;
use Drupal\bibcite_endnote\Encoder\EndnoteEncoder;
use Drupal\Tests\bibcite_import\Kernel\FormatDecoderTestBase;
class Endnote8DecodeTest extends FormatDecoderTestBase {
public static $modules = [
'system',
'user',
'serialization',
'bibcite',
'bibcite_entity',
'bibcite_endnote',
];
public function setUp() {
parent::setUp();
$this
->installConfig([
'system',
'user',
'serialization',
'bibcite',
'bibcite_entity',
'bibcite_endnote',
]);
$this->encoder = new EndnoteEncoder();
$this->format = 'endnote8';
$this->resultDir = __DIR__ . '/../../data/decoded/en8';
$this->inputDir = __DIR__ . '/../../data/encoded/en8';
}
}