Skip to content

Commit

Permalink
fix: 환경변수 문법 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjookang committed Apr 26, 2024
1 parent 2137bbd commit 300a7dc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/test/java/com/kuit/conet/infra/health/EnvTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.kuit.conet.infra.health;

import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.*;

public class EnvTest {
@Test
public void testActiveProfileEnvironmentVariable() {
// 환경 변수에서 ACTIVE_PROFILE 값을 가져옴
String activeProfile = System.getenv("ACTIVE_PROFILE");
// 환경 변수 값을 출력
System.out.println("ACTIVE_PROFILE 환경 변수 값: " + activeProfile);
}
}

0 comments on commit 300a7dc

Please sign in to comment.