Add new fields with an initial value of an empty string
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 15 Mar 2015 10:34:14 +0000 (11:34 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sun, 15 Mar 2015 10:34:14 +0000 (11:34 +0100)
src/main/java/net/pterodactylus/sone/data/Profile.java
src/test/java/net/pterodactylus/sone/data/ProfileTest.java [new file with mode: 0644]

index 1f80248..9c7da48 100644 (file)
@@ -330,7 +330,7 @@ public class Profile implements Fingerprintable {
                        throw new DuplicateField();
                }
                @SuppressWarnings("synthetic-access")
-               Field field = new Field().setName(fieldName);
+               Field field = new Field().setName(fieldName).setValue("");
                fields.add(field);
                return field;
        }
diff --git a/src/test/java/net/pterodactylus/sone/data/ProfileTest.java b/src/test/java/net/pterodactylus/sone/data/ProfileTest.java
new file mode 100644 (file)
index 0000000..b06e2f4
--- /dev/null
@@ -0,0 +1,26 @@
+package net.pterodactylus.sone.data;
+
+import net.pterodactylus.sone.data.Profile.Field;
+
+import org.hamcrest.MatcherAssert;
+import org.hamcrest.Matchers;
+import org.junit.Test;
+import org.mockito.Mockito;
+
+/**
+ * Unit test for {@link Profile}.
+ *
+ * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
+ */
+public class ProfileTest {
+
+       private final Sone sone = Mockito.mock(Sone.class);
+       private final Profile profile = new Profile(sone);
+
+       @Test
+       public void newFieldsAreInitializedWithAnEmptyString() {
+               Field newField = profile.addField("testField");
+               MatcherAssert.assertThat(newField.getValue(), Matchers.is(""));
+       }
+
+}