我是Android和iOS开发人员。我是IntelliJ的Kotlin编程语言的新手。 Java类运行良好,但kotlin类在运行时显示错误。首先它显示了错误的相关JUnit版本。我用Google搜索并找到了需要配置单元测试的解决方案。
我正在使用mac,所以我按下Command + Shift + T来配置单元测试。
之后当我运行MySecondClass.kt时,它显示错误
Information:Kotlin: kotlinc-jvm 1.1.3-2 (JRE 1.8.0_111-b14)
Information:7/10/17, 8:24 PM - Compilation completed with 2 errors and 0 warnings in 2s 85ms
/Users/ehaque/IdeaProjects/My First Kotlin Project/src/MySecondClassTest.kt
Error:(1, 12) Kotlin: Unresolved reference: junit
Error:(7, 10) Kotlin: Unresolved reference: junit
我的项目结构是这样的:
我该怎么办?