Quellcode durchsuchen

:shower: fixed test classname

smiley vor 3 Jahren
Ursprung
Commit
59141a38c9

+ 1 - 1
tests/Data/AlphaNumTest.php

@@ -15,7 +15,7 @@ use chillerlan\QRCode\Data\AlphaNum;
 /**
  * Tests the AlphaNum class
  */
-final class AlphaNumTest extends DatainterfaceTestAbstract{
+final class AlphaNumTest extends DataInterfaceTestAbstract{
 
 	protected string $FQN      = AlphaNum::class;
 	protected string $testdata = '0 $%*+-./:';

+ 1 - 1
tests/Data/ByteTest.php

@@ -15,7 +15,7 @@ use chillerlan\QRCode\Data\Byte;
 /**
  * Tests the Byte class
  */
-final class ByteTest extends DatainterfaceTestAbstract{
+final class ByteTest extends DataInterfaceTestAbstract{
 
 	protected string $FQN      = Byte::class;
 	protected string $testdata = '[¯\_(ツ)_/¯]';

+ 2 - 2
tests/Data/DatainterfaceTestAbstract.php → tests/Data/DataInterfaceTestAbstract.php

@@ -1,6 +1,6 @@
 <?php
 /**
- * Class DatainterfaceTestAbstract
+ * Class DataInterfaceTestAbstract
  *
  * @created      24.11.2017
  * @author       Smiley <smiley@chillerlan.net>
@@ -21,7 +21,7 @@ use function str_repeat;
 /**
  * The data interface test abstract
  */
-abstract class DatainterfaceTestAbstract extends TestCase{
+abstract class DataInterfaceTestAbstract extends TestCase{
 
 	protected ReflectionClass $reflection;
 	protected QRData          $QRData;

+ 1 - 1
tests/Data/KanjiTest.php

@@ -15,7 +15,7 @@ use chillerlan\QRCode\Data\Kanji;
 /**
  * Tests the Kanji class
  */
-final class KanjiTest extends DatainterfaceTestAbstract{
+final class KanjiTest extends DataInterfaceTestAbstract{
 
 	protected string $FQN      = Kanji::class;
 	protected string $testdata = '茗荷茗荷茗荷茗荷茗荷';

+ 1 - 1
tests/Data/NumberTest.php

@@ -15,7 +15,7 @@ use chillerlan\QRCode\Data\Number;
 /**
  * Tests the Number class
  */
-final class NumberTest extends DatainterfaceTestAbstract{
+final class NumberTest extends DataInterfaceTestAbstract{
 
 	protected string $FQN      = Number::class;
 	protected string $testdata = '0123456789';