procedure my_code_raises_zero_divisor is l_my_number number; begin l_my_number := 1/0; --should raise ut.fail('Expected exception but nothing was raised'); exception when others then ut.expect( sqlcode ).to_equal( -1476 ); end;