* BAEL-1216: Introduction to the Oriented Java APIs * OrientDB Java Graph and Document APIs * some cleans * BAEL-1216: Object API + code formating * Prevent the build to failed * Improve code and readme * Update Readme * Simulate failed test in jenkins pipeline
12 lines
180 B
Java
12 lines
180 B
Java
package com.baeldung;
|
|
|
|
import org.junit.Test;
|
|
import static org.junit.Assert.*;
|
|
|
|
public class SomeUnitTest {
|
|
@Test
|
|
public void init() {
|
|
assertEquals(1, 0);
|
|
}
|
|
}
|