From 7a5e62e89800e04ab07ebdda1c4c582d77c9c56a Mon Sep 17 00:00:00 2001 From: tae2089 Date: Tue, 19 Jul 2022 23:42:17 +0900 Subject: [PATCH] =?UTF-8?q?junit=20=EC=9C=84=EC=B9=98=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...354\235\264\353\270\214\353\237\254\353\246\254.md" | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 "junit/junit5-\353\235\274\354\235\264\353\270\214\353\237\254\353\246\254.md" diff --git "a/junit/junit5-\353\235\274\354\235\264\353\270\214\353\237\254\353\246\254.md" "b/junit/junit5-\353\235\274\354\235\264\353\270\214\353\237\254\353\246\254.md" new file mode 100644 index 0000000..46a1043 --- /dev/null +++ "b/junit/junit5-\353\235\274\354\235\264\353\270\214\353\237\254\353\246\254.md" @@ -0,0 +1,10 @@ +junit5에 필요한 라이브러리는 다음과 같다. + +```grovy +dependencies { + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' +} +``` + +위 두가지 라이브러리만 설치하면 junit5를 사용할 수 있다.