Interface TestConfig.Profile

Enclosing interface:
TestConfig

public static interface TestConfig.Profile
  • Method Summary

    Modifier and Type
    Method
    Description
    A comma separated list of profiles (dev, test, prod or custom profiles) to use when testing using @QuarkusTest
    Optional<List<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>>
    The tags this profile is associated with.
  • Method Details

    • profile

      @WithParentName @WithDefault("test") List<String> profile()
      A comma separated list of profiles (dev, test, prod or custom profiles) to use when testing using @QuarkusTest
    • tags

      Optional<List<@WithConverter(io.quarkus.runtime.configuration.TrimmedStringConverter.class) String>> tags()
      The tags this profile is associated with. When the quarkus.test.profile.tags System property is set (its value is a comma separated list of strings) then Quarkus will only execute tests that are annotated with a @TestProfile that has at least one of the supplied (via the aforementioned system property) tags.