Julien Herr

Results 369 comments of Julien Herr

The idea is interesting but as @cbeust said a long time ago, a data provider is a good workaround. According to the previous sample: ``` java @Columns("col1 | col2 ||...

@g13013 You mean something like ``` java public class UseMyDataProvider implements IAnnotationTransformer { public void transform(ITest annotation, Class testClass, Constructor testConstructor, Method testMethod) { if (/* business logic (for example:...

> it is impossible to set the IAnnotationTransformer via `@Listeners` @gjuillot It could be a feature request. Could you open an issue with that?

Hi @UBT-FJ @goekay refers to [ocpp specification](https://github.com/juherr/awesome-ev-charging/blob/main/ocpp/OCPP-1.6-Documentation_2019_12/ocpp-1.6%20edition%202.pdf) **Section 3.5. Local Authorization & Offline Behavior** (page 12). The question is more: what do you expect with the tag expiry?

It is not a feature provided by Steve out of the box but you can fork and propose an update. But why not do it by the API if it...

What "doesn't work" means? Do you see in the logs that Steve authorizes the transaction when the station asks for it? Please, explain and share logs that show the issue.

As I understand, something like `Integer ITestResult.getFactoryMethod().getInvocationIndex()` should provided.

@krmahadevan I think `IParameterInfo` can be moved to the public package. @marcphilipp You don't need `result.getTestClass().getInstances(true)` if `result.getMethod().getFactoryMethodParamsInfo().getIndex()` provides the good index value, right?

I didn't find any test that checked the feature. Samples from https://github.com/testng-team/testng/tree/master/testng-core/src/test/java/test/factory/github1083 could be used.

Following the links, I found another implementation of this problem: https://github.com/palantir/tritium/blob/develop/tritium-ids/src/main/java/com/palantir/tritium/ids/UniqueIds.java As I understand, the fix here is replacing all `UUID.randomUUID` by a new implementation. I've no idea about which...