Uses of Interface
dev.galasa.framework.spi.IManager
Package
Description
Galasa Framework - Framework setup routines
Galasa Framework - SPI
-
Uses of IManager in dev.galasa.framework
Modifier and TypeMethodDescriptionITestRunManagers.getActiveManagers()
TestRunManagers.getActiveManagers()
-
Uses of IManager in dev.galasa.framework.spi
Modifier and TypeClassDescriptionclass
class
An abstract manager which attempts to provide all the boilerplate code necessary to write a Manager in Galasa.Modifier and TypeMethodDescriptionboolean
AbstractManager.areYouProvisionalDependentOn
(@NotNull IManager otherManager) boolean
IManager.areYouProvisionalDependentOn
(@NotNull IManager otherManager) Is this Manager dependent on the other Manager.Modifier and TypeMethodDescriptionprotected <T> T
AbstractManager.addDependentManager
(@NotNull List<IManager> allManagers, @NotNull List<IManager> activeManagers, @NotNull GalasaTest galasaTest, @NotNull Class<T> dependentInterface) Helper method to find managers that implement an interface and tell them they are requiredvoid
AbstractManager.initialise
(@NotNull IFramework framework, @NotNull List<IManager> allManagers, @NotNull List<IManager> activeManagers, @NotNull GalasaTest galasaTest) void
IManager.initialise
(@NotNull IFramework framework, @NotNull List<IManager> allManagers, @NotNull List<IManager> activeManagers, @NotNull GalasaTest galasaTest) Initialise the Manager, if required.void
AbstractManager.youAreRequired
(@NotNull List<IManager> allManagers, @NotNull List<IManager> activeManagers, @NotNull GalasaTest galasaTest) void
IManager.youAreRequired
(@NotNull List<IManager> allManagers, @NotNull List<IManager> activeManagers, @NotNull GalasaTest galasaTest) Called if another Manager requires this one.