package com.prudas.app;

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

@SpringBootTest
@ActiveProfiles("test")
class PrudasApplicationTests {

    @Test
    void contextLoads() {
        // Fails the build if the Spring context (security config, JPA
        // mappings, Flyway-equivalent schema, property binding) can't wire
        // up cleanly — the cheapest possible regression guard.
    }
}
