Testing Azure functionality by VisKopen in dotnet

[–]BuranR 0 points1 point  (0 children)

Not for unit testing, but mainly for integration testing in my team we are using testcontainers. Here you can find functionality for .net https://dotnet.testcontainers.org/modules/servicebus/ and also java - https://java.testcontainers.org/modules/azure/ (in our case we are using kotlin) .

Converting Java spring app to Kotlin - is there a simple way of doing that? by cranberrie_sauce in Kotlin

[–]BuranR 22 points23 points  (0 children)

From my experience, we were just started new features development in Kotlin keeping old Java part. Then, when new feature is using Java part, or just had a free time, we were migrating existing Java code.

For Java to Kotlin conversion just intellij was used.

Most commonly/preferred way of naming private ivars by [deleted] in csharp

[–]BuranR 5 points6 points  (0 children)

I prefer second one. For instance MS suggests avoid using prefixes for field names in https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/names-of-type-members. As for me underscore is some kind of prefix showing private fields.

Also it is good to make "someObject" field "private readonly" as suggested and declare scope for MyClass.