LeoColman
04/08/2020, 3:14 PMIhar S
04/12/2020, 8:17 PMkotlin-test
library, where should I put a ticket or at least check for the ticket?
Thank you 🙂Slackbot
04/14/2020, 12:42 PMsam
04/15/2020, 4:53 AMsam
04/15/2020, 5:34 PMPierre Marais
04/16/2020, 10:43 AMCorey
04/16/2020, 2:44 PMSourabh Rawat
04/16/2020, 4:13 PMLeoColman
04/16/2020, 10:22 PMHarryPulvirenti
04/19/2020, 10:48 AMIDE
every test is successful but when I try to run the test with gradlew
I'm getting this error in an assertion:
java.lang.NoClassDefFoundError: arrow/core/NonFatal
the assertion is this shouldBeLeft()
Someone can help me?wasyl
04/19/2020, 12:39 PMreevn
04/21/2020, 9:32 AMYuan Lin
04/22/2020, 3:21 AMSteve RB
04/22/2020, 10:48 AMdr.dreigh
04/26/2020, 9:05 PMsam
04/27/2020, 12:54 AMKiryushin Andrey
04/27/2020, 2:57 PMjava.lang.ClassCastException: java.base/sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl cannot be cast to java.base/java.lang.Class
Ben
04/27/2020, 6:10 PMmattmoore
04/29/2020, 1:30 AM4.0.4
with Arrow's Either
type to compare two lefts:
val expected = Left(
<http://java.io|java.io>.FileNotFoundException(
"data/monkeywrench.txt (No such file or directory)"
)
)
val result = loadShortCircuit(filePaths) // returns Arrow Left type in this example (see video)
val left = Left(<http://java.io|java.io>.FileNotFoundException("data/monkeywrench.txt (No such file or directory)"))
expected shouldBe left
expected shouldBe left
fails in this case. The equality fails.thanksforallthefish
04/29/2020, 6:42 AMpackage xxx
import io.kotest.core.spec.style.StringSpec
import io.kotest.matchers.shouldBe
class FailingTest : StringSpec() {
init {
"reported twice" {
"a" shouldBe "b"
}
}
}
both intellij and gradle reports 2 failure. I scanned open issues and saw nothing, in case I can open oneakowal
04/30/2020, 11:44 AMatara
05/01/2020, 12:22 AMCause: java.lang.UnsupportedOperationException
at java.base/java.util.Collections$1.remove(Collections.java:4714)
at java.base/java.util.AbstractSet.removeAll(AbstractSet.java:176)
at org.jetbrains.plugins.gradle.service.project.GradleProjectResolverUtil.doBuildDependencies(GradleProjectResolverUtil.
Ignat Simonenko
05/01/2020, 11:12 AMIntArray
and Int
that will be sum of two random elements of the generated array. I had no problems with the first Arb: Arb.list(<http://Arb.int|Arb.int>()).map { it.toIntArray() }
but couldn't find a solution for the second one. Could someone advise something or I choose the wrong direction?sam
05/05/2020, 2:36 AMGopal S Akshintala
05/07/2020, 3:38 AMgradle test --tests "com.package.testClassName"'
. Is this expected?simon.vergauwen
05/07/2020, 8:25 AMtest { useJUnitPlatform() }
but that didn’t change anything.
I have plugin version 3.3.0.11
which I installed from the link on the github page of the plugin.
The plugin is also still named KotlinTest
in my editor, it was called Kotest on the plugin website. Any ideas? Shall I open a ticket on the plugin page?
IntelliJ IDEA 2020.1 (Community Edition)
Build #IC-201.6668.121, built on April 8, 2020
Runtime version: 11.0.6+8-b765.25 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
macOS 10.15.4
GC: ParNew, ConcurrentMarkSweep
Memory: 4012M
Cores: 12
Registry: ide.balloon.shadow.size=0
Non-Bundled Plugins: org.intellij.scala, org.jetbrains.kotlin, kotlintest-plugin-intellijsimon.vergauwen
05/09/2020, 3:16 PMPierre Marais
05/13/2020, 2:57 PMimplementation
instead of testImplementation
of the kotlintest dependency?
I.e. when I do
testImplementation("io.kotlintest:kotlintest-runner-junit5:3.4.2")
I have no issues, however when I do
implementation("io.kotlintest:kotlintest-runner-junit5:3.4.2")
I get this error when running my bundled jar:
Error: Could not find or load main class package.ApplicationKt
Caused by: java.lang.ClassNotFoundException: package.ApplicationKt
simon.vergauwen
05/15/2020, 4:27 PMchoose
constrains to Any
😄Chris
05/18/2020, 8:21 AM....F.....*.....
Chris
05/18/2020, 8:21 AM....F.....*.....
Attila Domokos
05/18/2020, 1:41 PMsam
05/18/2020, 4:38 PMtest("outer test") {
test("inner test") {
}
}