20

After adding a new unit test with multiple VS versions running I get this error:

vstest.executionengine.x86.exe has stopped working

in a popup window.

Matt Linder
  • 431
  • 3
  • 9
  • I just discovered that the partial class's ToString() override had a dependency on another object causing a stack overflow. I replaced the generic PropertiesToString with explicit tostring calls on the properties for the new object. – Matt Linder Nov 15 '13 at 14:32

1 Answers1

23

I had to check for recursive calls to resolve(ToString in foreign key mappings). See comment on question for details.

Matt Linder
  • 431
  • 3
  • 9