https://kotlinlang.org logo
#atrium
Title
# atrium
s

Sohel Shaikh

10/04/2021, 3:31 PM
@robstoll Could you please help me with this? https://kotlinlang.slack.com/archives/C0B8MA7FA/p1633176380281200
r

robstoll

10/04/2021, 4:06 PM
The run gutter per test is missing for common projects. Without checking it: I guess that's because Atrium is still using the old MPP plugins and it seems Jetbrains dropped support for it in intellij. You can still run the tests via gradle (and also the whole test class in intellij no?) What issue do you want to tackle?
s

Sohel Shaikh

10/04/2021, 5:20 PM
Yes. Can't run methods or Test classes. I was able to run tests using gradle but it runs all the tests each time I run command -
gradlew test clean
. I don't know how to run individual test classes using command line. I'll try to write a few test cases. Alternatively what do you suggest as an IDE or is it the same for you? Since, I am just starting out I was hoping I could use the debugger to understand the codebase but I don't know if I could invoke the debugger from command line.
r

robstoll

10/09/2021, 8:05 PM
sorry for the late delay, I read your message and then forgot about it. You can run single tests as follows via command line:
./gradlew :atrium-api-fluent-en_GB-jvm:test --tests "*AnyExpectationSamples"
I am using intellij, same for me. This problem only occurs for samples, you can run specs (you only need the spekframework plugin)
3 Views