Code coverage of unit tests I'm trying to monitor or find out how to deal with 'test coverage' using unit tests in the SF. Let's say i'm having the subject "Project" with a number, description, start date and an end date. I have applied a constraint that the start date must be equal to or before the end date. To prevent the user of having an error message that makes no sense (*1 see image), I've added a default concept telling the user he's doing things that are not possible. For this default a unit test can be added. And also for other concepts (layouts, task etc.) unit tests can be created. I want to measure that all SQL code (logic) is tested properly. When you generate the unit test for the situation above, you'll get this: create procedure def_project( @default_mode tinyint, -- 0 = add, 1 = update @import_mode tinyint, -- 0 = regular, 1 = import row, 3 = import @cursor_from_col_id varchar(255), -- column that triggered the default @cursor_to_col_id varchar(255) output, -- cursor