Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在尝试Android使用 TDD/持续集成在 Eclipse 中开发应用程序。我们在服务器上运行 Maven 3 和 Atlassian Bamboo。我们的问题是,当mvn clean install从 cli 运行时,Maven 成功构建了 App 和 AppTest,但没有运行任何测试。运行 sample15demos,我们下载,Maven 构建并运行测试。
Android
mvn clean install
想要帮助设置或完全替代。
Android 应用程序倾向于更改构建标记内的测试路径。检查您的测试是否在正确的目录中。
<build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> ...etc etc... </build>