Package ut.hu.lacimol.tutorial.helloworld

Source Code of ut.hu.lacimol.tutorial.helloworld.MyComponentUnitTest

package ut.hu.lacimol.tutorial.helloworld;

import org.junit.Test;
import hu.lacimol.tutorial.helloworld.MyPluginComponent;
import hu.lacimol.tutorial.helloworld.MyPluginComponentImpl;

import static org.junit.Assert.assertEquals;

public class MyComponentUnitTest {
  @Test
  public void testMyName() {
    MyPluginComponent component = new MyPluginComponentImpl(null);
    assertEquals("names do not match!", "myComponent", component.getName());
  }
}
TOP

Related Classes of ut.hu.lacimol.tutorial.helloworld.MyComponentUnitTest

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.