Is there a unit testing framework for testing PowerShell with PowerShell scripts? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T14:24:56Zhttp://stackoverflow.com/feeds/question/1004424http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1004424/is-there-a-unit-testing-framework-for-testing-powershell-with-powershell-scripts3Is there a unit testing framework for testing PowerShell with PowerShell scripts?tellingmachine2009-06-16T23:34:39Z2009-07-29T06:57:13Z
<p>I am lookin for a unit testing framework of type xUnit that lets me test PowerShell functions with PowerShell scripts.</p>
http://stackoverflow.com/questions/1004424/is-there-a-unit-testing-framework-for-testing-powershell-with-powershell-scripts/1004445#10044453Answer by Lee for Is there a unit testing framework for testing PowerShell with PowerShell scripts?Lee2009-06-16T23:44:01Z2009-06-16T23:44:01Z<p>While not an actual framework a la xUnit, Lee Holmes did write <a href="http://www.leeholmes.com/blog/UnitTestingInPowerShellALinkParser.aspx" rel="nofollow">an article about how to unit test PowerShell using PowerShell scripts</a>.</p>
http://stackoverflow.com/questions/1004424/is-there-a-unit-testing-framework-for-testing-powershell-with-powershell-scripts/1005174#10051742Answer by Johannes Rössel for Is there a unit testing framework for testing PowerShell with PowerShell scripts?Johannes Rössel2009-06-17T04:49:45Z2009-06-17T04:49:45Z<p>Well, just for completeness: There is actually <a href="http://code.google.com/p/psunit/" rel="nofollow">PSUnit</a>. Doesn't seem to be very mature, though as I see only two spikes of activity since its beginning as well as no documentation to speak of.</p>
<p>But as I learnt from <a href="http://cutest.sourceforge.net/" rel="nofollow">cuTest</a>, unit testing is something that fits into a very small space (at least for C in that case), so having something that works might not require too much effort.</p>
http://stackoverflow.com/questions/1004424/is-there-a-unit-testing-framework-for-testing-powershell-with-powershell-scripts/1198446#11984460Answer by tellingmachine for Is there a unit testing framework for testing PowerShell with PowerShell scripts?tellingmachine2009-07-29T06:57:13Z2009-07-29T06:57:13Z<p>I also found PSUnit on Codeplex. <a href="http://www.codeplex.com/psunit" rel="nofollow">PSUnit PowerShell Unit Testing Framework</a></p>
<p>There are some cool screen shots and a release is expected in August this year.</p>