Package helloworld.structural.adapter

Source Code of helloworld.structural.adapter.HelloWorldAdapterTest

package helloworld.structural.adapter;

import helloworld.HelloWorld;
import org.junit.Test;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
/**
* @author yihua.huang@dianping.com
*/
public class HelloWorldAdapterTest {

    @Test
    public void testHelloWorldAdapter(){
        HelloWorld adapterHelloWorld = new HelloWorldAdapter(new HelloAdapterDesignPattern());
        assertThat(adapterHelloWorld.helloWorld(),is("Hello Adapter!"));
    }
}
TOP

Related Classes of helloworld.structural.adapter.HelloWorldAdapterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.