3

I'm stuck in creating a test project for an existing one. For Eclipse it was simple, but for IntelliJ(and I'm forced to use it at my workplace) I don't really know how to test the project using Robotium framework. I would appreciate if anyone can write few clear steps in order to explain this.

noTest
  • 159
  • 1
  • 3
  • 12

1 Answers1

3

In IntelliJ, you create modules for this.

File -> Add Module -> Create Module from Scratch -> Android -> Test

For setting up Robotium in your new test project, open up

File -> Project Structure -> Modules -> <your test project> -> Add

Then add the Robotium jars with it.

jerieljan
  • 415
  • 6
  • 14