1

I stumbled upon this exception while running a junit test class (versions in question title).

enter image description here

As i have read in this thread that i must upgrade to eclipse Oxygen.3, i did it but still have the same exception thrown.

marsouf
  • 1,107
  • 8
  • 15

1 Answers1

3

Maybe the platform is missing in your pom.

  <dependency>
     <groupId>org.junit.platform</groupId>
     <artifactId>junit-platform-launcher</artifactId>
     <version>${junit.platform.version}</version>
     <scope>test</scope>
  </dependency>
Kai
  • 38,985
  • 14
  • 88
  • 103