Philip Chao
Philip Chao

Reputation: 63

Unable to use ScalaTest

import org.scalatest.FunSuite

class MyTestSuite extends FunSuite {

}

I got the following message in Intellij IDE:

class MyTestSuite must be either declared abstract or implement abstract member '$bang$eq$eq(right: T): TripleEqualsInvocation' in 'org.scalactic.TripleEqualsSupport'

However, according to ScalaTest, there is no need to implement anything. Please advice, thanks

Upvotes: 6

Views: 1084

Answers (1)

Jessica d
Jessica d

Reputation: 743

I was experiencing the same problem and invalidating the caches/restarting IntelliJ fixed it.

Upvotes: 6

Related Questions