Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 408 Bytes

SETUP.md

File metadata and controls

18 lines (13 loc) · 408 Bytes

Setup

Go through the setup instructions for PL/SQL to get ready to code:

http://exercism.io/languages/plsql

Running the Tests

Execute the tests by calling the run method in the respective ut_<exercise># package. The necessary code should be contained at the end of the test package. As an example, the test for the hamming exercise would be run using

begin
  ut_hamming#.run;
end;
/