India Languages, asked by ashvanisoni8626, 1 year ago

Arrange in order- A. Running Unit Test B.Running Static Code Check C.Check for Code Coverage D. Build Package

Answers

Answered by Answers4u
42

This process is called code review, and it is done to ensure developers maintain high quality of their existing projects. Here is the order on how the whole process works –

a) Build Package – continue the process further

b) Running unit test – if they run, you continue further

c) Check for code coverage - if it covers at least 60% continue

d) Running the static code check - need to check for any warning signs

Answered by Sidyandex
18

When you develop a software this is the process that has to be followed.

The code has to be first Build.

Then run the unit test.

Check the unit test code coverage, Check the code metrics and  run the static code.

Hence the answer is:

A. Build Package

B. Running Unit Test  

C.Check for Code Coverage

D. Running Static Code Check

Similar questions