Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
placeholder backend unit and integration testing files
  • Loading branch information
Megan235 committed May 2, 2026
commit 140e9a2b35b116276426109502a29cfc3f42b89e
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.mealchemy;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class MealchemyApplicationIntegrationTest {

@Test
void applicationContextLoads() {
// Verifies the full Spring context starts without errors against a real database.
// Requires SPRING_DATASOURCE_* env vars, set automatically by CI (ci.yml postgres service).
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.mealchemy;

import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;

class MealchemyApplicationUnitTest {

@Test
void placeholderPassesUntilRealTestsAreAdded() {
assertTrue(true);
}
}

//placeholder asserts true so ci doesn't fail with no testing. remove this once testing starts