HttpUnit を使い始めようとしています。簡単な例で Eclipse プロジェクトを作成しましたが、未解決の依存関係と見つからないインポートが無限に続くようです。だから私は最初からやり直しています:
このチュートリアルを機能させたいだけです:http://www.httpunit.org/doc/tutorial/
私のjarsフォルダーには以下が含まれています:
activation-1.1.jar
js-1.6R5.jar
jtidy-4aug2000r7-dev.jar
junit-3.8.1.jar
mail-1.4.jar
nekohtml-0.9.5.jar
servlet-api-2.4.jar
xercesImpl-2.6.1.jar
xmlParserAPIs-2.6.1.jar
私の .classpath ファイルには次のように書かれています:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="jars"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="output" path="bin"/>
</classpath>
次のインポートを解決できないのはなぜですか?
import com.meterware.httpunit.*;
import com.meterware.servletunit.*;
import junit.framework.*;
ありがとう