Sossenbinder
Custom Logger
Since a DB is involved, any chance there is an async operation involved for writing out the logs or flushing any buffers? Since the test steps through synchronously, is the DB access being done synchronously, or could this be a race condition?
13 replies
✅ How do Avro, ORC and Parquet work?
Not very familiar with the others, but at least for Avro the unique selling point is probably the potential to differ in reader and writer schema. The consumer and producer do not always have to stick to the exact same encoding, they just need to be compatible
13 replies
NUnit test class what has functions Step1,Step2,Step3...
I think you should always strive for tests containing their entire setup and teardown, never a dependency between each other. And if you are concerned that your test setup might require too much arrangement, you can always try to decouple some internals to allow it to individually test them, while only composing everything for a bigger test
5 replies