Unable to Import From main Java Directory Into test Directory (IntelliJ)
Unable to Import From main Java Directory Into test Directory (IntelliJ) After I attempted to add the AssertJ library to my project for testing, some configuration in my project changed and I cannot import any classes from my main package into my JUnit test package. My Main Class runs as expected, but I am unable to run any tests requiring Classes from the main package. I've tried the following: Looking at another project that is working it appears to be an issue with my build.gradle file group 'carpecoin' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '1.2.41' ext.junitJupiterVersion = '5.0.3' repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.3' } } apply plugin: 'java' apply plugin: 'kotlin' sourceCompatibility = 1.8 repositor...