[LIB-5] Change tests serialize
[snooker-score-api.git] / src / test / java / org / hedgecode / snooker / json / AbstractJsonTest.java
index 0ef6fa6..6158dc3 100644 (file)
@@ -24,6 +24,7 @@ import java.io.FileReader;
 import java.io.IOException;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
+import java.io.Serializable;
 
 import com.google.gson.Gson;
 
@@ -49,7 +50,7 @@ public abstract class AbstractJsonTest extends Assert {
                             getClass().getSimpleName() + JSON_EXT
                     ).getFile()
             );
-    private final File serFile =
+    private final File serializeFile =
             new File(
                     jsonFile.getParent() + File.separator
                             + getClass().getSimpleName() + SERIALIZE_EXT
@@ -79,30 +80,30 @@ public abstract class AbstractJsonTest extends Assert {
         return sb.toString();
     }
 
-    protected void serialize(JsonSerializable jsonObject) throws IOException {
+    protected void serialize(Serializable serializeObject) throws IOException {
         try (ObjectOutputStream oos =
                      new ObjectOutputStream(
                              new FileOutputStream(
-                                     serFile.getAbsolutePath()
+                                     serializeFile.getAbsolutePath()
                              )
                      )
         ) {
-            oos.writeObject(jsonObject);
+            oos.writeObject(serializeObject);
         }
     }
 
-    protected JsonSerializable deserialize() throws IOException, ClassNotFoundException {
-        JsonSerializable jsonObject;
+    protected Serializable deserialize() throws IOException, ClassNotFoundException {
+        Serializable deserializeObject;
         try (ObjectInputStream ois =
                      new ObjectInputStream(
                              new FileInputStream(
-                                     serFile.getAbsolutePath()
+                                     serializeFile.getAbsolutePath()
                              )
                      )
         ) {
-            jsonObject = (JsonSerializable) ois.readObject();
+            deserializeObject = (Serializable) ois.readObject();
         }
-        return jsonObject;
+        return deserializeObject;
     }
 
 }