From d77d71a2dc86a03078ab1c8b0ec10321c147492c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 23 Oct 2013 06:46:41 +0200 Subject: [PATCH] Rename FieldTest to ProfileTest. --- .../net/pterodactylus/sone/data/FieldTest.java | 45 ---------------------- .../net/pterodactylus/sone/data/ProfileTest.java | 45 ++++++++++++++++++++++ 2 files changed, 45 insertions(+), 45 deletions(-) delete mode 100644 src/test/java/net/pterodactylus/sone/data/FieldTest.java create mode 100644 src/test/java/net/pterodactylus/sone/data/ProfileTest.java diff --git a/src/test/java/net/pterodactylus/sone/data/FieldTest.java b/src/test/java/net/pterodactylus/sone/data/FieldTest.java deleted file mode 100644 index a71dc71..0000000 --- a/src/test/java/net/pterodactylus/sone/data/FieldTest.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Sone - FieldTest.java - Copyright © 2013 David Roden - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package net.pterodactylus.sone.data; - -import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.is; - -import net.pterodactylus.sone.data.Profile.Field; - -import org.junit.Test; - -/** - * Unit test for {@link Field}. - * - * @author David ‘Bombe’ Roden - */ -public class FieldTest { - - final Profile profile = new Profile((Sone) null); - - @Test - public void testRenamingAField() { - profile.addField("TestField"); - Field testField = profile.getFieldByName("TestField"); - profile.renameField(testField, "RenamedField"); - Field renamedField = profile.getFieldByName("RenamedField"); - assertThat(testField.getId(), is(renamedField.getId())); - } - -} 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 index 0000000..4f81966 --- /dev/null +++ b/src/test/java/net/pterodactylus/sone/data/ProfileTest.java @@ -0,0 +1,45 @@ +/* + * Sone - FieldTest.java - Copyright © 2013 David Roden + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package net.pterodactylus.sone.data; + +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; + +import net.pterodactylus.sone.data.Profile.Field; + +import org.junit.Test; + +/** + * Unit test for {@link Field}. + * + * @author David ‘Bombe’ Roden + */ +public class ProfileTest { + + final Profile profile = new Profile((Sone) null); + + @Test + public void testRenamingAField() { + profile.addField("TestField"); + Field testField = profile.getFieldByName("TestField"); + profile.renameField(testField, "RenamedField"); + Field renamedField = profile.getFieldByName("RenamedField"); + assertThat(testField.getId(), is(renamedField.getId())); + } + +} -- 2.7.4