cedric
07/14/2016, 3:23 PMcedric
07/14/2016, 3:23 PMhhariri
dmitriy.m
07/15/2016, 11:21 AMraniejade
07/15/2016, 1:13 PMartem_zin
07/18/2016, 7:10 AM./gradlew test
for JVM tests and ./gradlew connectedAndroidTest
for instrumentation testsdmitriy.m
07/18/2016, 10:16 AMdimsuz
07/20/2016, 11:06 PMSpek
and have a few questions (maybe known things, didn't find answers):
1) Currently not able to do "right click + Debug" on test in IntelliJ (Android Studio to be exact) - is this going to be supported later?
2) Not able to double click test + go to place where it is defined
3) I get a feeling that running spek tests is currently slower than junit ones - am I right? if yes, how soon speed is gonna be addressed? (I'm not quite sure if I'm right, because I don't have much tests now to run)
I'm using describe/it
specificationsdimsuz
07/20/2016, 11:18 PM1.0.25
versionartem_zin
07/20/2016, 11:18 PMfit
, fon
and other f*
to run specific test/subtree
2) Double click where?
3) We have some non-0 amount of Spek tests and didn’t notice performance regression in compare to JUnit4dimsuz
07/20/2016, 11:19 PMdimsuz
07/20/2016, 11:20 PMdimsuz
07/20/2016, 11:20 PMdimsuz
07/20/2016, 11:21 PMartem_zin
07/20/2016, 11:23 PMdimsuz
07/20/2016, 11:25 PMhhariri
artem_zin
07/21/2016, 7:29 AMdimsuz
07/21/2016, 10:46 AMdimsuz
07/21/2016, 10:47 AMhhariri
dimsuz
07/21/2016, 10:54 AMartem_zin
07/21/2016, 10:54 AMartem_zin
07/21/2016, 10:54 AMdimsuz
07/21/2016, 10:55 AMhhariri
artem_zin
07/21/2016, 11:03 AMon()
, then it()
then run, check that it fails and then add beforeEach
to on()
and check that it passes. Much more natural ~TDD for me.
Things I don’t like:
1. Messed up reports, both in IDE and in report files. Instrumentation tests has negative time duration, most of the test cases have name null
.
2. No local delegates makes handling “environment" hard (Kotlin 1.1 will have that)
3. No IDE supporthhariri
hhariri
artem_zin
07/21/2016, 11:07 AM