Package org.foobar.test

Source Code of org.foobar.test.FoobarTest

package org.foobar.test;

import static org.junit.Assert.assertEquals;

import org.foobar.Foobar;
import org.junit.Test;

public class FoobarTest
{

  @Test
  public void testGetName()
  {
    assertEquals("foobar", new Foobar().getName());
  }

}
TOP

Related Classes of org.foobar.test.FoobarTest

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.