Example #1
0
 @Test
 public void checkToString() {
   DbArtifact artifact = new DbArtifact();
   artifact.setGroupId("com.axway.test");
   artifact.setArtifactId("UidTest");
   artifact.setVersion("1.0.0-SNAPSHOT");
   artifact.setClassifier("win");
   artifact.setType("jar");
   assertEquals(
       "GroupId: com.axway.test, ArtifactId: UidTest, Version: 1.0.0-SNAPSHOT",
       artifact.toString());
 }