Ihor Kuzmychov

Results 2 issues of Ihor Kuzmychov

## Issue I have an issue using `Camelize()` method. It works not exactly as I expected. ## Example The next code ```csharp "IOModule".Camelize() ``` will return ```csharp "iOModule" ``` while...

I have a very common case of testing. I have a collection fixture: ```csharp [CollectionDefinition(nameof(SomeCollection))] public class SomeCollection : ICollectionFixture { } ``` with some test classes: ```csharp [Collection(nameof(SomeCollection))] public...