Stefan Bechtold

Results 17 comments of Stefan Bechtold

@Citizen-T: If you experience issues with the use of Categories and the HierarchicalContextRunner, please file an issue on GitHub and I will fix it. It really should not be an...

In: https://github.com/jknack/handlebars.java/blob/1f6c48e606dc1303d1e92a0a0eaa94120eba64fd/handlebars/src/main/java/com/github/jknack/handlebars/internal/Text.java#L93 I think it's worth considering to not always create a new `char` array that is just of the length of the required size, but to expand the capacity...

Hi, I have made an easy version using StringBuilder here: https://github.com/jknack/handlebars.java/pull/831 Needs a final test, but might help to move forward here.

Thanks for writing down the concept and providing a detailed example. I think it is great and I also like the next attribute pointing to the methodName. Two reasons: -...

Yes, this will be a consequence of turning from "next" to "ancestor". Preconditions are great, but we need to be aware of the added complexity. Maybe we discuss this topic...

I was trying to say that I like the method name references. I would like to avoid introducing another ID for the tests. I think IDE vendors are great for...

Three things I would like to add to the discussion: 1) Of course we could simply use `@Test` on the class level to minimize the number of annotations that JUnit...

@sbrannen, I would also like to "pin" my thoughts into this issue here. First of all I'd like to divide this issue into two cases: 1. A typical hierarchical test...

> Why isn’t it always called with the ExtensionContext of A? First, I think we can all agree that the execution of a @BeforeEach method belongs to the execution of...