hhariri
yigit
10/07/2015, 8:26 AMhhariri
salomonbrys
10/07/2015, 8:35 AMhhariri
salomonbrys
10/07/2015, 8:40 AMsalomonbrys
10/07/2015, 8:41 AMsalomonbrys
10/07/2015, 8:43 AMhhariri
hhariri
Cherif Bouchelaghem
03/06/2020, 12:19 PMAhmed Ibrahim
03/08/2020, 12:41 PMAhmed Ibrahim
03/21/2020, 1:12 PMAhmed Ibrahim
04/08/2020, 11:54 AMrunBlocking { assertion }
https://github.com/spekframework/spek/pull/835dnowak
04/22/2020, 11:03 PMmockkStatic
? I can’t make it work with Spek. In JUnit mockkStatic
works fine.Arnab Datta
05/25/2020, 1:25 PM<dependency>
<groupId>org.spekframework.spek2</groupId>
<artifactId>spek-dsl-jvm</artifactId>
<version>${spek.version}</version>
<scope>test</scope>
<type>pom</type>
</dependency>
<!-- <https://mvnrepository.com/artifact/org.spekframework.spek2/spek-runner-junit5> -->
<dependency>
<groupId>org.spekframework.spek2</groupId>
<artifactId>spek-runner-junit5</artifactId>
<version>${spek.version}</version>
<scope>test</scope>
</dependency>
This results in none of my tests being run, as they aren’t found. What’s going on?andylamax
06/18/2020, 9:57 PMAditya
06/30/2020, 7:55 PMdnowak
07/01/2020, 9:51 AMelectrolobzik
07/02/2020, 8:58 AMBruno_
07/14/2020, 1:24 PMdescribe
and 5x it
) takes awfully long for syntax highlighting to kick in? anywhere between 10-20s
is it even related to spek or is it kotlin compiler issue?
I've tried searching this channel for solutions but haven't found anythingmatthew graf
07/14/2020, 10:30 PMrunBlocking
)
Then("event store should be empty") {
runBlocking {
// findAll is a suspending function
eventStore.findAll().shouldBeRight { it.shouldBeEmpty() }
}
}
Its not the biggest deal, although it does make some tests a bit more verbose. I see some talk about this in the channel history but wasn’t sure if this was still the cleanest way to do itAhmed Ibrahim
08/13/2020, 1:07 PMobject MyTestCase : Spek({})
vs
class MyTestCase : Spek({})
dnowak
11/27/2020, 10:55 AMraniejade
03/06/2021, 7:16 AMVitor Prado
03/29/2021, 2:35 PMcommonTest
? or should I create tests only on android/jvm test folders?robstoll
08/09/2021, 8:28 AMrobstoll
01/27/2022, 8:21 PMv79
06/10/2022, 6:40 AMDennis Schröder
10/20/2022, 9:36 AM@Tag("integration")
annotation and then run ./gradlew test -DexcludeTags="integration"
to run only all other tests.