Android から uiautomator を使用するように jar をビルドしようとしています。
次のように非常に単純なテストを作成します。
public class TestUIAutomator extends UiAutomatorTestCase {
public TestUIAutomator(String name) throws UiObjectNotFoundException {
// Simulate a short press on the HOME button.
getUiDevice().pressHome();
//super(name);
}
protected void setUp() throws Exception {
super.setUp();
}
}
次に、ant を使用して、次のコマンドで uitest プロジェクトを作成します。
android create uitest-project -n HelloWorldTestUIAutomator -t 11 -p D:\tec_met_android\HelloWorldTestUIAutomator
次に、Eclipse から build.xml を実行すると、コンソールに次のメッセージが表示されます。
Buildfile: D:\tec_met_android\HelloWorldTestUIAutomator\build.xml
[echo] Out file : D:\tec_met_android\HelloWorldTestUIAutomator\bin/HelloWorldTestUIAutomator.jar
[echo] Android Ant Build. Available targets:
[echo] help: Displays this help.
[echo] clean: Removes output files created by other targets.
[echo] build: Builds the test library.
[echo] install: Installs the library on a connected device or
[echo] emulator.
[echo] test: Runs the tests.
[echo] It is possible to mix targets. For instance:
[echo] ant build install test
[echo] This will build, install and run the test in a single command.
BUILD SUCCESSFUL
Total time: 414 milliseconds
成功したことが示されました。しかし、出力ディレクトリには JAR がありません。
助けてくれてありがとう..!