Skip to content

Commit

Permalink
Added ProjectBranch Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Topin2001 committed Jun 4, 2024
1 parent e9465d3 commit 9751abd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test/ut/java/fr/cnes/sonar/report/model/ReportTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package fr.cnes.sonar.report.model;

import fr.cnes.sonar.report.CommonTest;
import org.junit.Assert;
import org.junit.Test;

import java.util.HashMap;
import java.util.Map;

public class ReportTest extends CommonTest {

@Test
public void ProjectBranchTest() {
Report report = new Report();
report.setProjectBranch("branch");
Assert.assertEquals("branch", report.getProjectBranch());
}

}

0 comments on commit 9751abd

Please sign in to comment.