diff --git a/bundles/core/org.openhab.core.library.test/LibraryTests.launch b/bundles/core/org.openhab.core.library.test/LibraryTests.launch
new file mode 100644
index 00000000000..3c74c474305
--- /dev/null
+++ b/bundles/core/org.openhab.core.library.test/LibraryTests.launch
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/bundles/core/org.openhab.core.library.test/src/test/java/org/openhab/core/library/types/DateTimeTypeTest.java b/bundles/core/org.openhab.core.library.test/src/test/java/org/openhab/core/library/types/DateTimeTypeTest.java
index afff1605d4c..addcdc35622 100644
--- a/bundles/core/org.openhab.core.library.test/src/test/java/org/openhab/core/library/types/DateTimeTypeTest.java
+++ b/bundles/core/org.openhab.core.library.test/src/test/java/org/openhab/core/library/types/DateTimeTypeTest.java
@@ -32,8 +32,6 @@
@RunWith(Parameterized.class)
public class DateTimeTypeTest {
- private SimpleDateFormat dateFormatter = new SimpleDateFormat(DateTimeType.DATE_PATTERN);
-
/**
* parameter test set class.
* each instance of this class represents a test which executes the test once.
@@ -77,9 +75,7 @@ public static class ParameterSet {
* @param inputTimeZone
* @param expectedResult
*/
- public ParameterSet(TimeZone defaultTimeZone,
- Map inputTimeMap, TimeZone inputTimeZone,
- String expectedResult) {
+ public ParameterSet(TimeZone defaultTimeZone, Map inputTimeMap, TimeZone inputTimeZone, String expectedResult) {
this.defaultTimeZone = defaultTimeZone;
this.inputTimeMap = inputTimeMap;
this.inputTimeZone = inputTimeZone;
@@ -93,8 +89,7 @@ public ParameterSet(TimeZone defaultTimeZone,
* @param inputTimeString
* @param expectedResult
*/
- public ParameterSet(TimeZone defaultTimeZone, String inputTimeString,
- String expectedResult) {
+ public ParameterSet(TimeZone defaultTimeZone, String inputTimeString, String expectedResult) {
this.defaultTimeZone = defaultTimeZone;
this.inputTimeMap = null;
this.inputTimeZone = null;
@@ -112,25 +107,30 @@ public ParameterSet(TimeZone defaultTimeZone, String inputTimeString,
@Parameters
public static Collection