chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
0 votes
In Isolator 6.0.1 this behavior happens:

[ img ]
[TestClass, Isolated]
public partial class Tests
{
   static partial void PartialMethod();

   [TestMethod]
   public void Test()
   {
      Isolate.Verify.WasCalledWithExactArguments(() => PartialMethod());
   }
}
asked by Neil (27.7k points)

2 Answers

0 votes
Hi Neil,

Partial methods are not supported currently. We should, of course, give out a better error message, and we'll consider adding partial method support depending on demand for the feature.

Thanks,
Doron
Typemock Support
answered by doron (17.2k points)
0 votes
Thanks Doron.
answered by Neil (27.7k points)
...