/* * Copyright (C) 2012, Katy Hilgenberg. * Special acknowledgments to: Knowledge & Data Engineering Group, University of Kassel (http://www.kde.cs.uni-kassel.de). * Contact: sdcf@cs.uni-kassel.de * * This file is part of the SDCFramework (Sensor Data Collection Framework) project. * * The SDCFramework is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The SDCFramework 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with the SDCFramework. If not, see <http://www.gnu.org/licenses/>. */ package de.unikassel.android.sdcframework.data.tests; import de.unikassel.android.sdcframework.data.independent.TemperatureSampleData; import de.unikassel.android.sdcframework.data.independent.GlobalSerializer; import de.unikassel.android.sdcframework.data.independent.SampleData; import junit.framework.TestCase; /** * Tests for the temperature sensor sample data. * * @author Katy Hilgenberg * */ public class TestTemperatureSampleData extends TestCase { /** * Test method for construction, setter and getter. */ public final void testTemperatureSampleData() { TemperatureSampleData sampleData = new TemperatureSampleData(); assertEquals( "Expected distance uninitialized ", 0.0, sampleData.getTemperature(), 0.000000001 ); assertNull( "Expected no related data", sampleData.getRelatedData() ); // test setter with getter float temperature = 0.2F; sampleData.setTemperature( temperature ); assertEquals( "Expected distance set", temperature, sampleData.getTemperature() ); // test copy construction assertEquals( "Expected equal sample", sampleData, new TemperatureSampleData( sampleData ) ); } /** * Test method for equal comparison */ public final void testEquals() { TemperatureSampleData sampleData = createInitializedSampleData(); assertEquals( "Expected object equal to itself", sampleData, sampleData ); assertEquals( "Expected object equal to a clone", sampleData, sampleData.doClone() ); assertEquals( "Expected object equal to a copy construced instance", sampleData, new TemperatureSampleData( sampleData ) ); assertFalse( "Expected object not equal to an uninitialized sample", sampleData.equals( new TemperatureSampleData() ) ); } /** * Test method for serialization. */ public final void testSerialization() { // create the test sample TemperatureSampleData orgSampleData = createInitializedSampleData(); SampleData sampleData = orgSampleData; String sResult; try { // serialize to String sResult = sampleData.toXML(); // serialize to object sampleData = GlobalSerializer.fromXML( TemperatureSampleData.class, sResult ); } catch ( Exception e ) { e.printStackTrace(); fail( "Unexpected exception during serialization to string" ); } assertEquals( "Expected object serialized from string equal to the original source", orgSampleData, sampleData ); } /** * Does create initialized sample data * * @return the initialized sample data */ public static TemperatureSampleData createInitializedSampleData() { TemperatureSampleData sample = new TemperatureSampleData(); sample.setTemperature( 37.2F ); return sample; } }