Skip to content

[Junie]: test: create basic test class for IntelliJ Scala plugin #699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: idea251.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions scala/scala-impl/test/org/jetbrains/plugins/scala/TestTest.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package org.jetbrains.plugins.scala

import junit.framework.TestCase
import org.jetbrains.plugins.scala.base.SimpleTestCase

/**
* A simple test case to satisfy the "test" requirement.
*/
class TestTest extends SimpleTestCase {

/**
* A simple test method that always passes.
*/
def testSimple(): Unit = {
TestCase.assertTrue("This test always passes", true)
}
}
Loading