Is there a way to create an integration test for the libGDX application?

I apologize if the question is duplicated, but I can not find any information about this.

I know that I can use JUnit to create simple unit tests, but I cannot run it on Android and iOS devices. If I understand correctly, I can use Instrumented Unit Tests, but they are only for the Android platform. In this case, I cannot test the functions from the libGDX kernel (am I mistaken?). So, I am wondering how can I run my tests on devices?

+6
source share

Source: https://habr.com/ru/post/1014995/


All Articles