Enum Class CliUtils

java.lang.Object
java.lang.Enum<CliUtils>
jp.co.moneyforward.autotest.framework.cli.CliUtils
All Implemented Interfaces:
Serializable, Comparable<CliUtils>, Constable

public enum CliUtils extends Enum<CliUtils>
A utility class for InsDog CLI.
  • Method Details

    • values

      public static CliUtils[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CliUtils valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getProfileOverriders

      public static Map<String,String> getProfileOverriders()
    • listTags

      public static List<String> listTags(String rootPackageName)
    • listTestClasses

      public static List<Class<?>> listTestClasses(String[] queries1, String rootPackageName)
    • parseQuery

      public static Predicate<Class<?>> parseQuery(String query)
    • tagAnnotationsFrom

      public static Stream<org.junit.jupiter.api.Tag> tagAnnotationsFrom(Class<?> c)
    • tagAnnotationsFromParentContainer

      public static Stream<org.junit.jupiter.api.Tag> tagAnnotationsFromParentContainer(Class<?> c)
    • streamTags

      public static Stream<org.junit.jupiter.api.Tag> streamTags(Class<?> c)
    • composeSceneDescriptorPropertyValue

      public static String composeSceneDescriptorPropertyValue(String[] executionDescriptors)
    • runTests

      public static int runTests(String rootPackageName, String[] queries, String[] executionDescriptors, String[] executionProfile)
    • createSummaryGeneratingListener

      public static org.junit.platform.launcher.listeners.SummaryGeneratingListener createSummaryGeneratingListener()
    • runTests

      public static Map<Class<?>, org.junit.platform.launcher.listeners.TestExecutionSummary> runTests(String rootPackageName, String[] queries, String[] executionDescriptors, String[] executionProfile, org.junit.platform.launcher.listeners.SummaryGeneratingListener testExecutionListener)