본문 바로가기
반응형

개발/VSCode7

[VSCode] Junit 라이브러리 직접 추가 / 테스트 실행 방법 # 라이브러리 직접 추가(빌드 툴 안 쓸 경우) JUnit4 아래 jar를 다운로드 후 classpath에 추가 junit.jar Maven Central Repository Search search.maven.org hamcrest-core.jar Maven Central Repository Search search.maven.org JUnit5 https://repo1.maven.org/maven2/org/junit/platform/junit-platform-console-standalone/1.8.2/junit-platform-console-standalone-1.8.2.jar 불러오는 중입니다... * classpath에 추가하는 방법 1) JAVA PROJECTS를 열고 Referenced Li.. 2022. 1. 22.
[VSCode] Gradle 프로젝트에서 Junit 추가 # Gradle build.gradle 파일에 추가 JUnit4 plugins { java } dependencies { testImplementation('junit:junit:(YOUR_JUNIT_VERSION)') } JUnit5 plugins { id 'java' id 'eclipse' // optional (to generate Eclipse project files) id 'idea' // optional (to generate IntelliJ IDEA project files) } repositories { mavenCentral() } dependencies { testImplementation(platform('org.junit:junit-bom:5.8.2')) testImplementa.. 2022. 1. 22.
[VSCode] maven 프로젝트에서 Junit 추가 이전에 VSCode에서 Java Test Runner 사용해서 테스트하는 방법을 포스팅했었다 근데 생각해보니까 초보개발자분들은 Junit 라이브러리를 추가하는 방법을 모를 수도 있겠단 생각이 들어서 급 포스팅! https://allonsyit.tistory.com/24 [VSCode] JUnit 사용하기 / Test Report 창 다시 열기 https://code.visualstudio.com/docs/java/java-testing Java Unit Tests in Visual Studio Code See how you can test your Java code in Visual Studio Code. code.visualstudio.com VSCode에서 Java를 사용할때.. allonsyit.t.. 2022. 1. 22.
[VSCode] prettier 설정 방법 / 적용 안될때 해결 방법 1. extestion -> prettier 설치 2. [mac] 기본 설정 -> 설정 / [windows] preferences - Default Formatter 설정 Default Formatter 검색해서 Prettier - Code formmater 를 지정해줘야 적용이 된다 초기 값은 없음(null)으로 되어있다 prettier 설치 후 적용이 안 된다 싶으면 이 설정을 확인해보자! settings.json 파일을 열고 아래와 같이 설정을 직접 바꿔줘도 된다 "editor.defaultFormatter": "esbenp.prettier-vscode" 3. [mac] 기본 설정 -> 설정 / [windows] preferences - Format On Save 설정 에디터에서 코드 수정 후 저장.. 2022. 1. 12.
[VSCode] JUnit 사용하기 / Test Report 창 다시 열기 https://code.visualstudio.com/docs/java/java-testing Java Unit Tests in Visual Studio Code See how you can test your Java code in Visual Studio Code. code.visualstudio.com VSCode에서 Java를 사용할때 JUnit 사용하는 방법 1. Java Test Runner 설치 2. 테스트 코드 작성 후 실행 2-1 Run Test 클릭 2-2 test explorer 에서 실행 3. 테스트 결과 확인 * Test Report 창을 껐더니 사라져버렸다 Test Report 창을 한참 찾다가 간신히 발견했다ㅜㅜ... 하단에 테스트 결과가 표시됨 테스트 결과 클릭하면 Test R.. 2020. 7. 7.
[VSCode] Visual Studio Code에 Java 시작하기 (자바 설정, 프로젝트 생성 및 실행) 1. VSCode 설치 -> https://allonsyit.tistory.com/3 VSCode 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications... allonsyit.tistory.com 2. JDK 설치 -> https://allonsyit.tistory.com/6?category=850300 [JAVA] Windows10 / Open JDK 설치 1. open jdk 페이지로 이동 http:/.. 2020. 3. 8.