Unit Testing Framework for Oracle PL/SQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:34:58Z http://stackoverflow.com/feeds/question/203376 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql 4 Unit Testing Framework for Oracle PL/SQL? Kyle Burton 2008-10-15T00:58:07Z 2009-12-01T19:01:27Z <p>I've seen the question (and answer) when posed for <a href="http://stackoverflow.com/questions/202940/unit-tests-framework-for-databases">MS SQL Server</a>, though I don't yet know of one for Oracle and PL/SQL. Are there xUnit style testing frameworks for Oracle's PL/SQL? What are they?</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/203381#203381 2 Answer by Justin Cave for Unit Testing Framework for Oracle PL/SQL? Justin Cave 2008-10-15T01:02:07Z 2008-10-15T01:02:07Z <p>The most commonly used is probably <a href="http://utplsql.sourceforge.net/" rel="nofollow">utPLSQL</a></p> <p>The original author of this toolkit now works for Quest, which has a <a href="http://www.quest.com/code-tester-for-oracle/" rel="nofollow">commercial PL/SQL unit testing application</a>.</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/203388#203388 1 Answer by Kyle Burton for Unit Testing Framework for Oracle PL/SQL? Kyle Burton 2008-10-15T01:04:55Z 2008-10-15T01:04:55Z <p>I also found another library: <a href="http://code.google.com/p/pluto-test-framework/" rel="nofollow">PLUTO</a> - has anyone used these and can compare/contrast them?</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/203441#203441 2 Answer by Justin Cave for Unit Testing Framework for Oracle PL/SQL? Justin Cave 2008-10-15T01:29:14Z 2008-10-15T01:29:14Z <p>PLUTO appears to be very new, and there doesn't appear to be a lot of documentation. So I would be concerned that you'd be working through a decent number of bugs to get things working. utPLSQL has been around for a number of years and pretty widely deployed, so there have been a lot more bug fixes and a lot more people who can help out if you run into problems.</p> <p>Additionally, and not to disparage anyone, but Steven Feuerstein, who wrote utPLSQL is one of the most recognized PL/SQL experts in the world. While I'm sure the author of PLUTO is a perfectly competent developer, I don't believe he has anywhere near the reputation Steven has.</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/203464#203464 3 Answer by Matthew Watson for Unit Testing Framework for Oracle PL/SQL? Matthew Watson 2008-10-15T01:45:13Z 2008-10-15T01:45:13Z <p>Duplicate question.</p> <p><a href="http://stackoverflow.com/questions/152441/unit-testing-for-plsql">http://stackoverflow.com/questions/152441/unit-testing-for-plsql</a></p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/264230#264230 0 Answer by Juan Carlos for Unit Testing Framework for Oracle PL/SQL? Juan Carlos 2008-11-05T02:52:33Z 2008-11-05T02:52:33Z <p>Haven't used any, but last realese of utPLSQL was on July 2005 and since the author is the same from the commercial code tester for oracle (<a href="http://www.quest.com/code-tester-for-oracle/" rel="nofollow">http://www.quest.com/code-tester-for-oracle/</a>) I don't think we'll be seeing much of utPLSQL in the future if any, so I think I'll take my chances with PLUTO (2008)</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/1143508#1143508 0 Answer by neves for Unit Testing Framework for Oracle PL/SQL? neves 2009-07-17T14:06:11Z 2009-07-17T14:06:11Z <p>I found this question searching for a PL/SQL unit test framework. I've found an article where <a href="http://en.oreilly.com/oscon2008/public/schedule/detail/3026" rel="nofollow">PLUTO's developer argues for it</a>:</p> <blockquote> <p>... there are a few products that help PL/SQL programmers test their code. Quest Software has a product called Code Tester for Oracle; however, the free version is cripple-ware and the for-pay version just adds one more obstacle for you to have to get by in convincing your organization to start testing. There is also a utPLSQL project that was abandoned a few years ago and it is starting to suffer from bit rot.</p> </blockquote> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/1809057#1809057 0 Answer by Raimonds Simanovskis for Unit Testing Framework for Oracle PL/SQL? Raimonds Simanovskis 2009-11-27T14:22:10Z 2009-11-27T14:22:10Z <p>I have created and using <a href="http://blog.rayapps.com/2009/11/27/oracle-plsql-unit-testing-with-ruby" rel="nofollow">PL/SQL unit testing framework using Ruby library ruby-plsql</a>.</p> <p>It provides much shorter and more readable tests than utPLSQL and gives more flexibility compared to GUI tools (like Quest Code Tester or SQLDeveloper 2.1).</p> http://stackoverflow.com/questions/203376/unit-testing-framework-for-oracle-pl-sql/1828162#1828162 0 Answer by Dinesh Bhat for Unit Testing Framework for Oracle PL/SQL? Dinesh Bhat 2009-12-01T19:01:27Z 2009-12-01T19:01:27Z <p>We use DBUnit. It integrates nicely into a continuous integration tools like Cruise Control, though developers need to learn a little Java. Templates, utilities and code samples helped our pl/sql developers get up to speed quickly.</p>