From 34d502b090a25c1173471293d5aebb9a4720a52a Mon Sep 17 00:00:00 2001 From: Michael Ochmann Date: Thu, 18 Aug 2022 12:58:13 +0200 Subject: [PATCH] added test for list elements --- tests/ListsTest.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/ListsTest.php diff --git a/tests/ListsTest.php b/tests/ListsTest.php new file mode 100644 index 0000000..94fc86b --- /dev/null +++ b/tests/ListsTest.php @@ -0,0 +1,32 @@ + +
  • Listpoint A
  • +
  • + Listpoint B + +
  • +
  • Listpoint C
  • + + "; + [$source, $result] = createTest($source, $target); + $this->assertEquals($source, $result); + } +} \ No newline at end of file