You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by as...@apache.org on 2018/04/30 17:06:42 UTC

[2/2] portals-pluto git commit: PLUTO-706: Make TestResult serializable (code review)

PLUTO-706: Make TestResult serializable (code review)


Project: http://git-wip-us.apache.org/repos/asf/portals-pluto/repo
Commit: http://git-wip-us.apache.org/repos/asf/portals-pluto/commit/f3f09095
Tree: http://git-wip-us.apache.org/repos/asf/portals-pluto/tree/f3f09095
Diff: http://git-wip-us.apache.org/repos/asf/portals-pluto/diff/f3f09095

Branch: refs/heads/master
Commit: f3f0909546303682d6b65d902186ad4abf95aab8
Parents: 0ce089c
Author: Neil Griffin <ne...@gmail.com>
Authored: Mon Apr 30 13:05:44 2018 -0400
Committer: Neil Griffin <ne...@gmail.com>
Committed: Mon Apr 30 13:05:44 2018 -0400

----------------------------------------------------------------------
 .../src/main/java/javax/portlet/tck/beans/TestResult.java     | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/portals-pluto/blob/f3f09095/portlet-tck_3.0/common/src/main/java/javax/portlet/tck/beans/TestResult.java
----------------------------------------------------------------------
diff --git a/portlet-tck_3.0/common/src/main/java/javax/portlet/tck/beans/TestResult.java b/portlet-tck_3.0/common/src/main/java/javax/portlet/tck/beans/TestResult.java
index cc6cf2e..af97f3a 100644
--- a/portlet-tck_3.0/common/src/main/java/javax/portlet/tck/beans/TestResult.java
+++ b/portlet-tck_3.0/common/src/main/java/javax/portlet/tck/beans/TestResult.java
@@ -34,10 +34,15 @@
  */
 package javax.portlet.tck.beans;
 
-import java.io.*;
 
 import javax.portlet.tck.constants.Constants;
 
+import java.io.IOException;
+import java.io.PrintWriter;
+import java.io.Serializable;
+import java.io.StringWriter;
+import java.io.Writer;
+
 /**
  * Encapsulates test results containint the test case name, the test case detail description, and the test case result (
  * <code>true</code> = success, <code>false</code> = failure).