Crain
Crain
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
And the build.gradle
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
It's mostly acting up because you defined the source location in build.gradle. /src/main is the default, so you don't need to specify it.
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
In this case package works
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
This is the structure
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
/myProjectRoot
build.gradle
/src
/main/java
/test/java
/myProjectRoot
build.gradle
/src
/main/java
/test/java
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
You also need
test {
useJUnitPlatform()
}
test {
useJUnitPlatform()
}
In your build.gradle
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
They only look special because of IntelliJ
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
Both are just folders
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
Not in /src, in your case it would be in the root
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
Just a directory
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
You aren't creating another module
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
No description
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
In that case we'll swap to the more traditional approach, let me knab a screenshot
43 replies
JCHJava Community | Help. Code. Learn.
Created by Allan on 11/10/2024 in #java-help
Hey, I have a problem with Junit, can someone help me with the code ?
sourceSets {
test {
java {
srcDirs = 'src'
}
}
}
sourceSets {
test {
java {
srcDirs = 'src'
}
}
}
@Allan
43 replies