Package ch.epfl.scala.bsp4j
Class ScalaTestSuiteSelection
- java.lang.Object
-
- ch.epfl.scala.bsp4j.ScalaTestSuiteSelection
-
public class ScalaTestSuiteSelection extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ScalaTestSuiteSelection(java.lang.String className, java.util.List<java.lang.String> tests)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getClassName()
Fully qualified name of the test suite classjava.util.List<java.lang.String>
getTests()
List of tests which should be run within this test suite.int
hashCode()
void
setClassName(java.lang.String className)
Fully qualified name of the test suite classvoid
setTests(java.util.List<java.lang.String> tests)
List of tests which should be run within this test suite.java.lang.String
toString()
-
-
-
Method Detail
-
getClassName
@Pure public java.lang.String getClassName()
Fully qualified name of the test suite class
-
setClassName
public void setClassName(java.lang.String className)
Fully qualified name of the test suite class
-
getTests
@Pure public java.util.List<java.lang.String> getTests()
List of tests which should be run within this test suite. Empty collection means that all of them are supposed to be executed.
-
setTests
public void setTests(java.util.List<java.lang.String> tests)
List of tests which should be run within this test suite. Empty collection means that all of them are supposed to be executed.
-
toString
@Pure public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
@Pure public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
@Pure public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-