Add Stream processing example

This commit is contained in:
Ivan Paolillo
2016-09-01 10:57:47 +02:00
parent cc9370e8ff
commit d9da586447
41 changed files with 2459 additions and 0 deletions
@@ -0,0 +1,16 @@
package org.baeldung.spring.cloud;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TimeSourceApplicationTests {
@Test
public void contextLoads() {
}
}