Hi.
My configuration: Visual Studio 2015 preview version + JustMock Q2 (2015.2.512.4)
Apparently static mocking doesn't work for me when i run it from Windows Universal unit test project. It seems ignoring the mock at all. For example here it doesn't throw exception:
Mock.SetupStatic(typeof(Assert), Behavior.Strict);Mock.Arrange(() => Assert.IsTrue(Arg.AnyBool)).Throws(new ArgumentException());Assert.IsTrue(true);The same code executes correctly if i create regular unit test project on the same configuration.
Any help?
Thanks.
