View Javadoc
1   package io.guixer.logs;
2   
3   import java.io.File;
4   
5   public interface GuixerOut {
6   
7   	File getDir();
8   
9   	TestClass[] getTestClasses();
10  
11  	interface TestClass {
12  
13  		String getSimpleName();
14  
15  		TestMethod[] getTestMethods();
16  	}
17  
18  	interface TestMethod {
19  
20  		String getName();
21  
22  		Run[] getRuns();
23  	}
24  
25  	interface Run {
26  
27  		String getDirName();
28  
29  		long getTimeMillis();
30  
31  		Log getLog();
32  	}
33  }