-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gd/convert sdk to kotlin/159978777 #102
Gd/convert sdk to kotlin/159978777 #102
Conversation
47cac37
to
9c2b8db
Compare
9c2b8db
to
90b81f2
Compare
0eadf6b
to
433cfec
Compare
433cfec
to
7c1d816
Compare
/** | ||
* [Testing Fundamentals](http://d.android.com/tools/testing/testing_android.html) | ||
*/ | ||
class ApplicationTest : ApplicationTestCase<Application>(Application::class.java) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this ApplicationTest
is not used, should be removed too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed
|
||
@RunWith(AndroidJUnit4::class) | ||
@LargeTest | ||
class TradeItLinkedBrokerManagerTest { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
running androidTests on emulator with api level 19 got below error:
Test running failed: Instrumentation run failed due to 'java.lang.ClassNotFoundException'
do you have any idea what went wrong? tests was ok in api level 22 and 28 emulators though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure. I tested on develop and the error was already there
|
||
val context = context | ||
val apiKey = apiKey | ||
val environment = environment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can just declare the property in the constructor directly instead.
No description provided.