从Android Studio运行Kotlin Koans测试

Windows 10,Android Studio 3.0.
所以我只是从主分支克隆了Kotlin Koans repo并尝试以两种不同的方式运行测试:
1.使用IDE,当我按下测试方法旁边的绿色箭头时,我看到:

Process finished with exit code 1
Class not found: "i_introduction._0_Hello_World.N00StartKtTest"Empty test suite.

2.当我尝试使用Kotlin Koans自述文件中描述的终端时:

gradlew test --tests i_*

它给了我一个输出

:compileKotlin                                                                   
Using kotlin incremental compilation
Caught an exception trying to connect to Kotlin Daemon
java.lang.classNotFoundException: com.sun.tools.javac.util.Context

我已经看到很多建议,jdk文件夹中可能缺少tools.jar,我使用的是内部Android Studios jdk,它在这里展示.
我也尝试禁用gradle deamons – 结果仍然相同.

解决方法

如果GitHub版本不适合你,你也可以通过IntelliJ插件安装Kotlin Koans.

查看此处的说明:https://kotlinlang.org/docs/tutorials/edu-tools-learner.html

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...