-
[intelliJ] Execution failed for task ':compileJava'.With Computer/Spring Starter Project 2020. 1. 31. 17:32
Testing started at 오후 4:37 ...
> Task :cleanTest
> Task :compileJava
C:\Users\LJ\IdeaProjects\freelec-springboot2-webservice\src\main\java\com\zozo\book\springboot\web\web\dto\HelloResponseDto.java:8: error: variable name not initialized in the default constructor
private final String name;
^
C:\Users\LJ\IdeaProjects\freelec-springboot2-webservice\src\main\java\com\zozo\book\springboot\web\web\dto\HelloResponseDto.java:9: error: variable amount not initialized in the default constructor
private final int amount;
^
2 errors
> Task :compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 4s
2 actionable tasks: 2 executed
왜 받아치는 것도 한번에 안되는 것이냐 했는디,
ctrl+D 눌러서 테스트코드 작성시 name, amount를 선언해주고,
메소드 작성시 name을 두번 썼지 뭡니까, 컴퓨터는 거짓말을 하지 않지ㅠㅠ
assertThat(dto.getName()).isEqualTo(name);
assertThat(dto.getAmount()).isEqualTo(name); amount로 바꿔줌
위에꺼는 그냥 오타고, 버전이 자동으로 5로 받아져서 그랬다는 깃허브 이슈ㅠㅠ 이걸로 2시간은 헤맨듯
72p오류
롬복 테스트 실패 - 그레이들 버전 다운그레이드로 해결
해결 방법 :
- alt+F12 (윈도우/맥 동일) 키로 해당 프로젝트 기준으로 터미널 생성
- gradlew wrapper --gradle-version 4.10.2
BUILD SUCCESSFUL in 1m 1s
4 actionable tasks: 3 executed, 1 up-to-date
오후 5:34:52: Tasks execution finished ':cleanTest :test --tests "com.0000.0000.springboot.web.dto.HelloResponseDtoTest.롬복_기능_테스트"'.[ 참고 ] https://github.com/jojoldu/freelec-springboot2-webservice/issues/2
반응형'With Computer > Spring Starter Project' 카테고리의 다른 글
[intelliJ] Error: HttpMessageNotReadableException (0) 2020.02.07 [intelliJ] TDD에서 실행쿼리 형태 확인 (0) 2020.02.07 [intelliJ] 수동으로 코드 검증 (0) 2020.01.31 [IntelliJ] FAILURE: Build failed with an exception. (0) 2020.01.31 [IntelliJ] 스프링 부트에서 테스트 코드를 작성하자 (0) 2020.01.30