File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
src/test/java/com/sio/javatd5sio2/models Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 43
43
if : success() || failure()
44
44
with :
45
45
name : ciMavenReport-${{ github.run_id }}
46
- path : target/surefire-reports
46
+ # path: target/surefire-reports
47
+ path : target/consolidated-reports
47
48
- name : Test Report
48
49
uses : dorny/test-reporter@v1
49
50
if : success() || failure() # run this step even if previous step failed
Original file line number Diff line number Diff line change 123
123
</executions >
124
124
<configuration >
125
125
<!-- <outputDirectory>${project.build.directory}/consolidated-reports</outputDirectory>-->
126
- <outputDirectory >${project.build.directory} /surefire -reports</outputDirectory >
126
+ <outputDirectory >${project.build.directory} /consolidated -reports</outputDirectory >
127
127
<linkXRef >false</linkXRef >
128
128
<!-- Générer des rapports XML uniquement -->
129
129
<reportFormat >xml</reportFormat >
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ void setUp() {
18
18
void testTaskInitialization () {
19
19
Task newTask = new Task ("New task" );
20
20
assertEquals ("New task" , newTask .getTitle ());
21
- // assertFalse(newTask.isCompleted());
22
- assertTrue (newTask .isCompleted ());
21
+ assertFalse (newTask .isCompleted ());
22
+ // assertTrue(newTask.isCompleted());
23
23
}
24
24
25
25
@ Test
You can’t perform that action at this time.
0 commit comments