- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for testToStringNotNonsense (0.09 sec)
-
compat/maven-model/src/test/java/org/apache/maven/model/BuildTest.java
} @Test void testToStringNullSafe() { assertNotNull(new Build().toString()); } @Test public void testToStringNotNonsense() { Build build = new Build(); String s = build.toString(); assert "Build {BuildBase {PluginConfiguration {PluginContainer {}}}}".equals(s) : s; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.8K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/LicenseTest.java
} @Test void testToStringNullSafe() { assertNotNull(new License().toString()); } @Test public void testToStringNotNonsense() { License license = new License(); license.setName("Unlicense"); license.setUrl("http://lic.localdomain"); String s = license.toString();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/ScmTest.java
} @Test void testToStringNullSafe() { assertNotNull(new Scm().toString()); } @Test public void testToStringNotNonsense() { Scm scm = new Scm(); scm.setConnection("scm:git:git://git.localdomain/model"); String s = scm.toString();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/IssueManagementTest.java
} @Test void testToStringNullSafe() { assertNotNull(new IssueManagement().toString()); } @Test public void testToStringNotNonsense() { IssueManagement im = new IssueManagement(); im.setSystem("Velociraptor"); im.setUrl("https://velo.localdomain"); String s = im.toString();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 2K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/MailingListTest.java
} @Test void testToStringNullSafe() { assertNotNull(new MailingList().toString()); } @Test public void testToStringNotNonsense() { MailingList list = new MailingList(); list.setName("modello-dev"); String s = list.toString(); assertEquals("MailingList {name=modello-dev, archive=null}", s); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 1.9K bytes - Viewed (0)