Q: Android instrumented test의 결과는 어디에서 확인할 수 있나요?
저는 gradle을 이용해서 컴파일을 하고 있습니다. 제가 만든 테스트는 로그와 결과출력을 텍스트로 하고 있습니다.
grep -r text * fails.
system.out과 logging의 결과물이 저장되는 곳이 어디인가요?
감사합니다.
수정: 유닛 테스트의 결과를 /app/build/test-results/ 에서 찾았습니다. 하지만 다른 것은 아직 찾지 못했습니다. instrumented test의 결과 output 파일이 저장되는 곳이 어디인지 알고 계시는 분 없나요?
(질문자: Ray Tayek)
A: gradlew connectedCheck를 실행하면 아래와 같은 디렉토리가 생성됩니다.
\build\reports\androidTests\connected\
\build\outputs\androidTest-results\connected\
이 instrumented test는 LogCat 결과도 가지고 있는데, Log.d 를 통해 출력된 것만 저장됩니다.
System.out.print 를 이용해서 테스트 결과를 출력하면 아래와 같이 출력됩니다.
만약 출력 결과를 유지하고 싶다면, gradle task 중 adb logcat을 하나 만들어, 디바이스에서 나오는 결과를 따로 저장해야 할겁니다.
(답변자: David Medenjak)
_
10 1 | I managed to get gradle cC to work. My test just prints out and logs one line of text.
where is the thanks edit: i found the output for the unit tests (it's in .../app/build/test-results/). but still no luck with the other. is there a way to save the output from the instrumented tests somehow? |
_
2 | Running
These instrumentation tests will also log their output in LogCat, along with any
If you need to also persist the output you could probably write a gradle task running |
'StackOverflow ' 카테고리의 다른 글
[JSP]JSF, Servlet, JSP의 차이점이 무엇인가요? (0) | 2016.02.29 |
---|---|
[Android] R cannot be resolved 에러가 나옵니다. 어떻게 해결해야 하나요? (0) | 2016.02.23 |
StackOverflow의 Reputation에 대해 알아봅시다 (0) | 2016.01.19 |
[Android] 안드로이드의 진동기능을 어떻게 이용하나요? (0) | 2016.01.18 |
[C++] C++ 소스에서, extern "C" 라는 코드의 의미가 무엇인가요? (0) | 2016.01.14 |