What is your favorite Delphi mocking library? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:28:20Z http://stackoverflow.com/feeds/question/293755 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/293755/what-is-your-favorite-delphi-mocking-library 16 What is your favorite Delphi mocking library? Pierre-Jean Coudert 2008-11-16T10:20:45Z 2008-11-16T20:51:27Z <p>I want to start using mock objects on my Delphi projects.</p> <p>After a quick google I've found those:</p> <ul> <li><a href="http://code.google.com/p/delphi-mock-wizard/" rel="nofollow">Delphi Mock Wizard</a> </li> <li><a href="http://sourceforge.net/projects/pascalmock/" rel="nofollow">PascalMock</a></li> </ul> <p>So my question is what one is your favourite and why?</p> http://stackoverflow.com/questions/293755/what-is-your-favorite-delphi-mocking-library/294356#294356 11 Answer by dangi for What is your favorite Delphi mocking library? dangi 2008-11-16T20:32:46Z 2008-11-16T20:51:27Z <p>Woaw, I am the PascalMock project leader and it's the first time I heard about Delphi Mock Wizard! Very nice addition to PascalMock.</p> <p>BTW you also have some smaller mock frameworks:</p> <ul> <li><a href="http://delphixtreme.com/wordpress/?p=14" rel="nofollow">SimpleMock</a> </li> <li><a href="http://sourceforge.net/projects/ubmock/" rel="nofollow">Ultra Basic MockObjects</a> </li> </ul> <p>Maybe there are some other ones around?</p> <p>Also PascalMock is open source and contributions or ideas of improvements are welcome.</p> <p>PS: The latest PascalMock version from <a href="http://pascalmock.cvs.sourceforge.net/viewvc/pascalmock/PascalMock/" rel="nofollow">CVS</a> add additional features to the 1.1 version, like:</p> <ul> <li>automatic mock creation at run time for interfaces using RTTI</li> <li>allow to expects methods calls in any order</li> <li>expects at least x calls of a method</li> </ul>