All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qameta.allure.Context Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version
package io.qameta.allure;

/**
 * Report context. Can be added via plugins and used from
 * report configuration.
 * 

* * JacksonContext context = configuration.requireContext(JacksonContext.class) * ObjectMapper mapper = context.getValue(); * * * @see io.qameta.allure.context.JacksonContext * @see io.qameta.allure.context.MarkdownContext * @see io.qameta.allure.context.FreemarkerContext * @see io.qameta.allure.context.RandomUidContext * @since 2.0 */ @FunctionalInterface public interface Context extends Extension { /** * Returns the context value. * * @return the context value. */ T getValue(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy