Results 22 comments of Serhii Shushliapin

@NitinShuklaML, thanks for using FakeDb. The issue is in the home item path. You pass the text constant `"home.Paths.FullPath"` instead of the actual value ;) Just remove the quotes and...

@NitinShuklaML, could you please post a _minimal_ reproducible unit test which I can run and see which part fails?

The issue subject is pretty clear: > FakeDb does not have GetItem(string path, Language lang) overload I'd like to understand why would you need one and why the current implementation...

Sure. The issue as I see it is that existing services are a bit overloaded (even in such a simplified model). The `HeaderBuilder` class deals with both [data model](https://github.com/Sitecore/Helix.Examples/blob/master/examples/helix-basic-unicorn/src/Feature/Navigation/website/Services/HeaderBuilder.cs#L44) and...

@TheCakeMonster, @rockfordlhotka, do you have any opinion if it makes any sense to introduce CPM in _single-project_ sample solutions such as [DataPortalCacheExample](https://github.com/MarimerLLC/csla/tree/main/Samples/DataPortalCacheExample)? I ignored them for now, since for me...

Duplicates #225 and it seems nobody is going to fix that. As a workaround I just copied accidentally stored old binaries into `C:\Users\\AppData\Roaming\Sitecore\Sitecore Instance Manager\Apps` folder. Worked for me.

Yea, I realize you may dislike it, but it has been released to public. It cannot be removed because author does not like it (at least without bumping the major...

Yes, it is a complicated process. I often see the following 'deadlock' in my logs where I can neither delete nor install an instance: ``` [11:20:54][Step 7/11] { [11:20:54][Step 7/11]...

Tests may look a bit awkward here. That's because this PR contains pure mocks. Usually AutoFixture helps to minimize the redundant code and make tests more readable (if used right...

Ok, got it. There are some thoughts why do I prefer to go with mocks: https://sshushliapin.github.io/blog/2019/12/25/switching-from-fakedb-to-mocks.html I'll try do find advanced scenarios to make the diff more visible. Besides that,...