Skip to content

Commit

Permalink
Added comments for test JENKINS-16072
Browse files Browse the repository at this point in the history
  • Loading branch information
inky84 committed Dec 11, 2012
1 parent 3c5db5f commit f88d969
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -6,7 +6,6 @@

import java.io.File;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import net.praqma.clearcase.ucm.utils.BaselineList;
import net.praqma.clearcase.ucm.utils.filters.NoDeliver;
Expand All @@ -19,6 +18,12 @@
*/
public class JENKINS16072 extends BaseTestClass {

/**
* This is a small test to ensure that the BaseLine list object is serialized proberly. One thing to note is that when you design classes which
* have associations or belong to another class, remember to ensure that ALL member classes are serializable if the object is used
* with Jenkins remoting. (Building on a remote slave).
* @throws Exception
*/
@Test
public void jenkins_16072() throws Exception {
File testFile = File.createTempFile("objectSerialization", ".test");
Expand Down

0 comments on commit f88d969

Please sign in to comment.