Tal
Tal
I'm not suggesting to make a breaking change in the current version. But if there are plans to introduce a `v2` it might be a candidate. The reason for this...
@meling I think you should use `gen.Struct` or `gen.StructPtr` for your case. You can look at the examples here: https://github.com/leanovate/gopter/blob/master/gen/struct_test.go#L18
@adrianmaurer there is also another way to create custom structs a more typesafe one: ``` func FullNameGen() gopter.Gen { return gopter.DeriveGen( func(first, last string) string { return first + "...
Hi @stephenh I have the same problem. When I generate the code it look like this: (relevant parts only) ```typescript create(base?: I): VerdictResponse { return VerdictResponse.fromPartial(base ?? ({} as any));...
@stephenh Thank you for your reply, I'm using `tsc` version `5.3.3` but this was reproduced in `4.9.5` as well. I'm puzzled as you and honestly have no idea what causes...
@cristianrgreco Hi, by default the code creates a Mongodb Replica Set ```typescript class MongoDBContainer extends testcontainers_1.GenericContainer { constructor(image = "mongo:4.0.1") { super(image); this.withExposedPorts(MONGODB_PORT) .withCommand(["--replSet", "rs0"]) .withWaitStrategy(testcontainers_1.Wait.forLogMessage(/.*waiting for connections.*/i)) .withStartupTimeout(120000); }...