Class 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 class
      java.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 class
      void setTests​(java.util.List<java.lang.String> tests)
      List of tests which should be run within this test suite.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ScalaTestSuiteSelection

        public ScalaTestSuiteSelection​(java.lang.String className,
                                       java.util.List<java.lang.String> tests)
    • 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 class java.lang.Object
      • equals

        @Pure
        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        @Pure
        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object