/********************************************************************* * Sangria * * Copyright (C) 2014 Tavian Barnes * * * * This library is free software. It comes without any warranty, to * * the extent permitted by applicable law. You can redistribute it * * and/or modify it under the terms of the Do What The Fuck You Want * * To Public License, Version 2, as published by Sam Hocevar. See * * the COPYING file or http://www.wtfpl.net/ for more details. * *********************************************************************/ package com.tavianator.sangria.core; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.util.*; import javax.inject.Qualifier; import com.google.inject.Key; import com.google.inject.TypeLiteral; import com.google.inject.name.Names; import org.junit.Test; import static org.hamcrest.MatcherAssert.*; import static org.hamcrest.Matchers.*; /** * Tests for {@link PrettyTypes}. * * @author Tavian Barnes (tavianator@tavianator.com) * @version 1.0 * @since 1.0 */ public class PrettyTypesTest { @Retention(RetentionPolicy.RUNTIME) @Qualifier private @interface Simple { } @Test public void testClasses() { assertThat(PrettyTypes.format("Class is %s", PrettyTypesTest.class), equalTo("Class is com.tavianator.sangria.core.PrettyTypesTest")); assertThat(PrettyTypes.format("Class is %s", Simple.class), equalTo("Class is com.tavianator.sangria.core.PrettyTypesTest.Simple")); } @Test public void testTypeLiterals() { assertThat(PrettyTypes.format("TypeLiteral is %s", new TypeLiteral>() { }), equalTo("TypeLiteral is java.util.List")); } @Test public void testKeys() { assertThat(PrettyTypes.format("Key is %s", new Key>() { }), equalTo("Key is java.util.List")); assertThat(PrettyTypes.format("Key is %s", new Key>(Names.named("test")) { }), equalTo("Key is java.util.List annotated with @com.google.inject.name.Named(value=test)")); assertThat(PrettyTypes.format("Key is %s", new Key>(Simple.class) { }), equalTo("Key is java.util.List annotated with @com.tavianator.sangria.core.PrettyTypesTest.Simple")); } }