Mark Schenk
Mark Schenk
I have a performance test which requires some initialized variables. These are set within a setup method which is annotated with '@BeforeEach'. However when I execute the performance test this...
When I execute the following example in Intelij: ``` import org.spekframework.spek2.Spek import org.spekframework.spek2.style.gherkin.Feature object Spek2Test : Spek({ Feature("Test before and after each scenario") { beforeFeature { println("Before Feature") } afterFeature...
When specifying the chapter-label within the cukedoktor maven plugin and/or cukedoktor it hasn't any effect. I believe that is because `chapter-label` has been replaced by `chapter-signifier`.
Due to the fact that comments are no longer included in the cucumber json output the cukedoctor-discrete functionality doesn't seem to work anymore. As a hack to solve this I...
**Description:** When clicking through the WSO2 management console I spontaneously get logged out sometimes. I have deployed 2 instances of Identity Server. Within the logs there are no indications something...
Dear logtail team. I think MDC fields are not properly logged due to the async approach of logtail. In my case I have a method like follows: ``` try {...
I was creating a mapping for our translation service and noted that the LanguageCode for Ukranian (UK) was not defined in the class. Does this mean the language is not...
Within my notes I have sections containing actions I need to do and references to additional information (internal and external). When exporting my notes I would like to hide those...
Would it be possible to do something like this? ``` generate("aws") { from("software.amazon.awssdk:bom:2.31.21") { aliasPrefixGenerator = GeneratorConfig.NO_PREFIX } library("log4j2", "com.amazonaws", "aws-lambda-java-log4j2").version("1.6.0") } ``` I would like to combine the AWS...
I'm using a JMH gradle plugin to execute my benchmarks. This plugin creates per run a JSON output. How could I use the benchmark action to generate a report?