1 package org.testng;
2 
3 import java.io.Serializable;
4 
5 /**
6  * Parent interface of all the object factories.
7  *
8  * @author Cedric Beust <cedric@beust.com>
9  */
10 public interface ITestObjectFactory extends Serializable {
11 
12 }
13