BAEL-720: Intro to Jenkins 2 and the power of pipelines

This commit is contained in:
Dassi Orleando
2017-11-29 04:30:45 +01:00
parent 29fe38bfde
commit 4bf7fb23f6
15 changed files with 680 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
package com.baeldung;
import org.junit.Test;
import static org.junit.Assert.*;
public class SomeUnitTest {
@Test
public void init() {
assertEquals(1, 1);
}
}