initial java 8 sample
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
*.class
|
||||
|
||||
#folders#
|
||||
/target
|
||||
/neoDb*
|
||||
/data
|
||||
/src/main/webapp/WEB-INF/classes
|
||||
*/META-INF/*
|
||||
|
||||
# Packaged files #
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.baeldung.java;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class CoreJava8UnitTest {
|
||||
|
||||
// tests -
|
||||
|
||||
@Test
|
||||
public final void when_thenCorrect() {
|
||||
final Runnable r2 = () -> System.out.println("Hello world two!");
|
||||
r2.run();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user