DDieterich / DTGen

DTGEN Code Generation Tool for Relational Designers (See Wiki Branch)
http://dtgen.org
3 stars 0 forks source link

Need Regresion Testing #40

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What will the enhancement do?

 -) Add Unit Testing to the Release Process

How is this currently done or handled?

 -) Manually

What version of the product are you using? On what operating system?

 -) Not Applicable

Please provide any additional information below.

 -) Use SQL*Developer Unit Test Utility?

Original issue reported on code.google.com by Duane.Di...@gmail.com on 10 Jul 2012 at 12:19

GoogleCodeExporter commented 9 years ago
Need White Box Testing on all Functions

Original comment by Duane.Di...@gmail.com on 10 Jul 2012 at 12:21

GoogleCodeExporter commented 9 years ago
/* Error Log and Debug Log Test Script */
declare
   procedure test1
   is
      junk number;
   begin
      util.log('Testing Debug');
      junk := 1 / 0;
   end;
begin
   util.set_usr('Testor1');
   insert into util_log (dtm, usr, txt)
      values (systimestamp, 'Testor1', 'Testing Commit');
   commit;
   insert into util_log (dtm, usr, txt)
      values (systimestamp, 'Testor1', 'Testing Rollback');
   test1;
exception
   when others then
     util.log(SQLERRM);
     rollback;
end;

Original comment by Duane.Di...@gmail.com on 31 Jul 2012 at 1:36

GoogleCodeExporter commented 9 years ago

Original comment by Duane.Di...@gmail.com on 19 Sep 2012 at 9:59

GoogleCodeExporter commented 9 years ago

Original comment by Duane.Di...@gmail.com on 4 Oct 2012 at 11:36