Add Jenkinsfile
All checks were successful
zdm/envoy/pipeline/head This commit looks good

This commit is contained in:
2021-12-03 16:25:02 +01:00
parent 544210a811
commit 1a9f9a85ab
3 changed files with 46 additions and 2 deletions

View File

@ -18,10 +18,10 @@ import envoy.util.SerializationUtils;
* @author Leon Hofmeister
* @since Envoy Common v0.1-beta
*/
class UserTest {
public class UserTest {
@Test
void test() throws IOException, ClassNotFoundException {
public void test() throws IOException, ClassNotFoundException {
User user2 = new User(2, "kai");
User user3 = new User(3, "ai");
User user4 = new User(4, "ki", Set.of(user2, user3));