Package junit

Source Code of junit.UnaryPlusTest

package junit;

import pass.UnaryPlus;
import junit.framework.TestCase;

public class UnaryPlusTest extends TestCase {
  private UnaryPlus uplus;
 
  protected void setUp() throws Exception {
    super.setUp();
    uplus = new UnaryPlus();
  }
 
  protected void tearDown() throws Exception {
    super.tearDown();
  }
 
  @SuppressWarnings("static-access")
  public void testDivide() {
    this.assertEquals(uplus.unaryPlus(+4), 4);
    this.assertEquals(uplus.unaryPlus(+-4), -4);
  }
}
TOP

Related Classes of junit.UnaryPlusTest

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.