Package net.sourceforge.purrpackage.test.branch

Examples of net.sourceforge.purrpackage.test.branch.Trinary


public class TrinaryFalseTest {

  @Test
  public void testTrinaryFalse() {
    Trinary t = new Trinary();
    t.trinaryPartialSamePackage( false, true );
    t.trinaryPartialSamePackage( false, false );
    t.trinaryPartial( false, true );
  }
View Full Code Here


public class TrinaryTest {

  @Test
  public void testTrinaryTrue() {
    Trinary t = new Trinary();
    t.trinarySamePackage( true, true );
    t.trinarySamePackage( false, true );
    t.trinarySamePackage( false, false );
    t.trinaryPartialSamePackage( true, true );
    t.trinaryPartial( true, true );
    t.ifThenSamePackage( true );
    t.ifThenSamePackage( false );
    t.ifThenSamePackagePartial( true );
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.purrpackage.test.branch.Trinary

Copyright © 2018 www.massapicom. 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.