質問編集履歴
3
試したことを更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -110,11 +110,41 @@
|
|
110
110
|
|
111
111
|
### 試したこと
|
112
112
|
|
113
|
-
hamcrest-all-1.3.jarを追加する方法
|
113
|
+
①hamcrest-all-1.3.jarを追加する方法
|
114
114
|
|
115
115
|
http://kakts-tec.hatenablog.com/entry/junit_org.hamcrest.CoreMatchers%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6
|
116
116
|
|
117
117
|
を見て実施 ⇒ 改善なし
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
②MainTest.javaをjunit-4.4.jarと、hamcrest-core-1.3.zipでコンパイルし、実行
|
122
|
+
|
123
|
+
C:\pleiades\workspace\HelloWorld\src\HelloWorld>javac -cp C:\pleiades\junit\junit-4.4.jar;C:\pleiades\junit\hamcrest-core-1.3.zip; MainTest.java
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
C:\pleiades\workspace\HelloWorld\src\HelloWorld>java HelloWorld.Main
|
128
|
+
|
129
|
+
Hello world
|
130
|
+
|
131
|
+
Exception in thread "main" java.lang.NoClassDefFoundError: org/hamcrest/CoreMatchers
|
132
|
+
|
133
|
+
at HelloWorld.MainTest.mainmethod(MainTest.java:41)
|
134
|
+
|
135
|
+
at HelloWorld.Main.main(Main.java:10)
|
136
|
+
|
137
|
+
Caused by: java.lang.ClassNotFoundException: org.hamcrest.CoreMatchers
|
138
|
+
|
139
|
+
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
|
140
|
+
|
141
|
+
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
|
142
|
+
|
143
|
+
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
|
144
|
+
|
145
|
+
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
|
146
|
+
|
147
|
+
... 2 more
|
118
148
|
|
119
149
|
|
120
150
|
|
2
画像追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
### 前提・実現したいこと
|
1
|
+
![![コマンドプロンプト実行画面](8cc5614092b9354c66eabc96f986ac36.png)](469a137981f73b3dd31941765495b718.png)### 前提・実現したいこと
|
2
2
|
|
3
3
|
|
4
4
|
|
1
環境情報と試したことを追加しました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
コマンドプロンプトからEclipseで作成したJunitサンプルプログラムを実行
|
1
|
+
コマンドプロンプトからEclipseで作成したJunitサンプルプログラムを実行するとエラーが出る
|
test
CHANGED
@@ -110,14 +110,22 @@
|
|
110
110
|
|
111
111
|
### 試したこと
|
112
112
|
|
113
|
+
hamcrest-all-1.3.jarを追加する方法
|
113
114
|
|
115
|
+
http://kakts-tec.hatenablog.com/entry/junit_org.hamcrest.CoreMatchers%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6
|
114
116
|
|
115
|
-
|
117
|
+
を見て実施 ⇒ 改善なし
|
116
118
|
|
117
119
|
|
118
120
|
|
119
121
|
### 補足情報(FW/ツールのバージョンなど)
|
120
122
|
|
123
|
+
junit-4.4.jar
|
121
124
|
|
125
|
+
hamcrest-library-1.3.zip
|
122
126
|
|
123
|
-
|
127
|
+
hamcrest-core-1.3.zip
|
128
|
+
|
129
|
+
あとからhamcrest-all-1.3.jaを追加
|
130
|
+
|
131
|
+
Eclipse pleiades
|