5afe / svalinn-kotlin

🛡️❄️️ Kotlin libraries for Ethereum based Android development
MIT License
31 stars 3 forks source link

How to test it #4

Closed HaiChecker closed 6 years ago

HaiChecker commented 6 years ago

How to test it, this is my error log: Class not found: "pm.gnosis.crypto.HDNodeTest" Empty test suite.

HaiChecker commented 6 years ago

I know, I added the open keyword above the class

fmrsabino commented 6 years ago

Hi!

You can run the tests using the included Gradle Wrapper. For the crypto module:

./gradlew :crypto:testDebug

You can also do it in Android Studio by clicking the green arrow to the left of the test class. image

No changes to the files should be required to run the tests.

HaiChecker commented 6 years ago

OK, I see. Thank you.