001package com.lucidtech.puttingalltogether; 002 003import org.junit.jupiter.api.Test; 004import org.springframework.boot.test.context.SpringBootTest; 005 006@SpringBootTest 007class PuttingAllTogetherApplicationTests { 008 009 @Test 010 void contextLoads() { 011 } 012 013 @Test 014 public void applicationStarts() { 015 PuttingAllTogetherApplication.main(new String[]{}); 016 } 017}