* Tests the isBuilding method of the class {@link BuildMemory}.
* With two memories.
*/
@Test
public void testIsBuildingTrue2() {
PatchsetCreated event = Setup.createPatchsetCreated();
BuildMemory instance = new BuildMemory();
AbstractProject project = mock(AbstractProject.class);
AbstractBuild build = mock(AbstractBuild.class);
when(build.getProject()).thenReturn(project);
instance.started(event, build);
PatchsetCreated event2 = Setup.createPatchsetCreated();
event2.getChange().setNumber(event.getChange().getNumber() + 34);
project = mock(AbstractProject.class);
build = mock(AbstractBuild.class);
when(build.getProject()).thenReturn(project);
instance.started(event2, build);
assertTrue(instance.isBuilding(event));