Can I use the C# API / AAA to verify that a method calls a constructor with specific arguments? I know how to do it with the older API:
Mock mock = MockManager.Mock<T>();
mock.ExpectConstructor().Args(Check.NotNull(), Check.IsEqual(value),,,);
But, I'd like to use the C# API for faking and verifying subsequent calls on the constructed object.
If it's not possible, then is it possible to mix the old and new API?
Thanks,
Paul