@Override
public void setUp() {
projectStats = new ProjectStats();
bugCollection = new SortedBugCollection(projectStats);
plugin = new CloudPluginBuilder().setCloudid("myAbstractCloud").setClassLoader(this.getClass().getClassLoader())
.setCloudClass(MyAbstractCloud.class).setUsernameClass(NoNameLookup.class).setProperties(new PropertyBundle())
.setDescription("no description").setDetails("no details").createCloudPlugin();
cloud = new MyAbstractCloud(plugin, bugCollection, new Properties());
summary = new StringWriter();
timestampCounter = 0;
}