質問編集履歴
2
依存関係を修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -18,7 +18,11 @@
|
|
18
18
|
|
19
19
|
**【gradleのdependency】**
|
20
20
|
```
|
21
|
-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version:
|
21
|
+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: JUNIT_JUPITER_VERSION
|
22
|
+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: JUNIT_JUPITER_VERSION
|
23
|
+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: JUNIT_JUPITER_VERSION
|
24
|
+
testImplementation group: 'org.junit.vintage', name: 'junit-vintage-engine', version: JUNIT_JUPITER_VERSION
|
25
|
+
testImplementation group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.6.2'
|
22
26
|
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.8.0'
|
23
27
|
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '3.8.0'
|
24
28
|
```
|
1
誤字があったので修正しています
title
CHANGED
File without changes
|
body
CHANGED
@@ -46,8 +46,6 @@
|
|
46
46
|
**【Usecase】**
|
47
47
|
```
|
48
48
|
package com.myapp.usecase;
|
49
|
-
|
50
|
-
import com.myapp.domain.Money;
|
51
49
|
import com.myapp.usecase.gateway.Gateway;
|
52
50
|
|
53
51
|
public class Usecase {
|
@@ -65,9 +63,6 @@
|
|
65
63
|
```
|
66
64
|
package com.myapp.gateway;
|
67
65
|
|
68
|
-
import com.myapp.domain.Money;
|
69
|
-
import com.myapp.usecase.gateway.Gateway;
|
70
|
-
|
71
66
|
public class Gateway {
|
72
67
|
public String getInputValue() {
|
73
68
|
return "未実装";
|