Are there any mocking libraries that support the .NET Compact Framework

I'm just wondering if anyone found a mocking library that can be used with the .NET compact framework.

I tried Moq, but it does not work, I quickly performed a Google search, but did not find anything useful.

Thanks.

+3
source share
2 answers

Unfortunately, .Net CF does not support IL-radiation or compilation (via CSharpCodeProvider or such). The best mocking frameworks use IL, the older ones use CSharpCodeProvider - both of which are not in CF.

, CF ( - Cecil CF , ).

+1

.

+1

Source: https://habr.com/ru/post/1702345/


All Articles