Android Test Case - how to view output?

前端 未结 6 914
野趣味
野趣味 2021-01-07 16:05

I\'m using AndroidTestCase for unit testing. I have a unit test which is failing, but I haven\'t figured out how to display output from it. For example, I don\'

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-07 16:38

    With Android Studio 2.3.1, works using the old fashioned Java styled

    System.out.println("Start Test");
    

    Here you can see the output:

提交回复
热议问题