You are here

class BibtexEncoderTest in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_bibtex/tests/src/Unit/BibtexEncoderTest.php \Drupal\Tests\bibcite_bibtex\Unit\BibtexEncoderTest

@coversDefaultClass \Drupal\bibcite_bibtex\Encoder\BibtexEncoder @group bibcite

Hierarchy

Expanded class hierarchy of BibtexEncoderTest

File

modules/bibcite_bibtex/tests/src/Unit/BibtexEncoderTest.php, line 12

Namespace

Drupal\Tests\bibcite_bibtex\Unit
View source
class BibtexEncoderTest extends UnitTestCase {

  /**
   * @coversDefaultClass
   */
  public function testLineEndings() {
    $example1 = "unit1 \r\n field1 \r\n field2 \r\n\r\n unit2 \r\n field1 \r\n field2 \r\n\r\n";
    $expect1 = "unit1 \n field1 \n field2 \n\n unit2 \n field1 \n field2 \n\n";
    $example2 = "unit1 \r field1 \r field2 \r\r unit2 \r field1 \r field2 \r\r";
    $expect2 = "unit1 \n field1 \n field2 \n\n unit2 \n field1 \n field2 \n\n";
    $example3 = "unit1 \n field1 \n field2 \n\n unit2 \n field1 \n field2 \n\n";
    $expect3 = "unit1 \n field1 \n field2 \n\n unit2 \n field1 \n field2 \n\n";
    $encoder = new BibtexEncoder();
    $result1 = $encoder
      ->lineEndingsReplace($example1);
    $result2 = $encoder
      ->lineEndingsReplace($example2);
    $result3 = $encoder
      ->lineEndingsReplace($example3);
    $this
      ->assertEquals($expect1, $result1);
    $this
      ->assertEquals($expect2, $result2);
    $this
      ->assertEquals($expect3, $result3);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BibtexEncoderTest::testLineEndings public function @coversDefaultClass
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340