tech.units.tck.tests.format.QuantityFormatTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unit-tck Show documentation
Show all versions of unit-tck Show documentation
Units of Measurement (JSR 385) TCK
/*
* Units of Measurement TCK
* Copyright © 2005-2019, Jean-Marie Dautelle, Werner Keil, Otavio Santana.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
* and the following disclaimer in the documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of JSR-385 nor the names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package tech.units.tck.tests.format;
import static tech.units.tck.TCKRunner.SPEC_ID;
import static tech.units.tck.TCKRunner.SPEC_VERSION;
import static tech.units.tck.util.TestGroups.FORMAT;
import static tech.units.tck.util.TestUtils.testHasPublicMethod;
import static org.testng.AssertJUnit.assertFalse;
import static org.testng.AssertJUnit.assertNotNull;
import javax.measure.Quantity;
import javax.measure.format.QuantityFormat;
import org.jboss.test.audit.annotations.SpecAssertion;
import org.jboss.test.audit.annotations.SpecVersion;
import org.testng.annotations.Test;
import tech.units.tck.TCKSetup;
/**
* Tests for QuantityFormat
* @version 1.1, March 5, 2019
* @since 2.0
* @author Werner Keil
*/
@SpecVersion(spec = SPEC_ID, version = SPEC_VERSION)
public class QuantityFormatTest {
/**
* Ensure at least one QuantityFormat implementation
* is available/registered.
*/
@SpecAssertion(section = "4.4", id = "46-A1")
@Test(groups = { FORMAT }, description = "4.6 Ensure at least one QuantityFormat implementation is available/registered.")
public void testEnsureGotQuantityFormat() {
assertNotNull("TCK Configuration not available.", TCKSetup.getConfiguration());
assertFalse(TCKSetup.getConfiguration().getQuantityFormats4Test().isEmpty());
}
/**
* Ensure the format() operation is implemented.
*/
@SpecAssertion(section = "4.6", id = "46-A2")
@Test(groups = { FORMAT }, description = "4.6 Ensure the format() operation is implemented.")
public void testQuantityFormatFormat() {
for (QuantityFormat format : TCKSetup.getConfiguration().getQuantityFormats4Test()) {
Class> type = format.getClass();
testHasPublicMethod("Section 4.6", type, false, Appendable.class, "format", Quantity.class);
}
}
/**
* Ensure the appendable format() operation is implemented.
*/
@SpecAssertion(section = "4.6", id = "46-A3")
@Test(groups = { FORMAT }, description = "4.6 Ensure the appendable format() operation is implemented.")
public void testQuantityFormatFormatAppendable() {
for (QuantityFormat format : TCKSetup.getConfiguration().getQuantityFormats4Test()) {
Class> type = format.getClass();
testHasPublicMethod("Section 4.6", type, false, Appendable.class, "format", Quantity.class, Appendable.class);
}
}
/**
* Ensure the isLocaleSensitive() method is implemented.
*/
@SpecAssertion(section = "4.6", id = "46-A4")
@Test(groups = { FORMAT }, description = "4.6 Ensure the isLocaleSensitive() method is implemented.")
public void testQuantityFormatFormatIsLocalSensitive() {
for (QuantityFormat format : TCKSetup.getConfiguration().getQuantityFormats4Test()) {
Class> type = format.getClass();
testHasPublicMethod("Section 4.6", type, "isLocaleSensitive", false);
}
}
/**
* Ensure the parse() operation is implemented.
*/
@SpecAssertion(section = "4.6", id = "46-A5")
@Test(groups = { FORMAT }, description = "4.6 Ensure the parse() operation is implemented.")
public void testQuantityFormatParse() {
for (QuantityFormat format : TCKSetup.getConfiguration().getQuantityFormats4Test()) {
Class> type = format.getClass();
testHasPublicMethod("Section 4.6", type, "parse", true);
}
}
}