Skip to content

Commit

Permalink
Set class and method to public visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
henning-gerhardt committed May 13, 2024
1 parent 8ccaeba commit 71a3e8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
import org.w3c.dom.Document;
import org.xml.sax.SAXException;

class CourseTest {
public class CourseTest {

@Test
void testCloneMethod() throws IOException, ParserConfigurationException, SAXException {
public void testCloneMethod() throws IOException, ParserConfigurationException, SAXException {
String xmlString = new String(Files.readAllBytes(new File("src/test/resources/newspaper-course.xml").toPath()));
Document xmlDocument = XMLUtils.parseXMLString(xmlString);
Course course = new Course(xmlDocument);
Expand Down

0 comments on commit 71a3e8a

Please sign in to comment.