Skip to content
Snippets Groups Projects
Commit 492816bc authored by LABOUREL Arnaud's avatar LABOUREL Arnaud
Browse files

changed names of subprojects

parent c9a08c92
No related branches found
No related tags found
No related merge requests found
rootProject.name = 'blackbox'
rootProject.name = 'tp_1_test_blackbox'
rootProject.name = 'tp_fiabilite'
rootProject.name = 'tp_2_unit_test_and_coverage'
package partial_coverage;
public class PartialCoverage {
public int returnZeroOrOne(int x, int y) {
int res = 0;
int z = 2;
x = z * z - z - 1;
/* on va voir si intellij s'en sort!*/
y = x > 0 ? -1 : 0;
for (int i = x; i < y; i++) {
res = x == 0 ? 1 : 0;
}
return res;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment