1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package test.de.smartics.properties.resource.repository;
17
18 import org.junit.experimental.categories.Category;
19 import org.junit.experimental.theories.DataPoint;
20
21 import de.smartics.properties.resource.domain.ArtifactId;
22 import de.smartics.testdoc.annotations.Uut;
23 import de.smartics.testdoc.categories.type.ObjectBasics;
24 import de.smartics.util.test.theories.SerializationTheory;
25
26
27
28
29 @Category(ObjectBasics.class)
30 @Uut(type = ArtifactId.class)
31 public class ArtifactIdSerializableTest extends SerializationTheory
32 {
33
34 @DataPoint
35 public static final ArtifactId DEFAULT = ArtifactId.create(
36 "group", "artifactId", "1.0", "jar", "app");
37
38 @DataPoint
39 public static final ArtifactId NO_CLASSIFIER = ArtifactId
40 .create("group", "artifactId", "1.0", "jar", null);
41 }