Package org.trifort.rootbeer.testcases.otherpackage2

Examples of org.trifort.rootbeer.testcases.otherpackage2.StaticsTest2PublicClass


 
  @Override
  public void gpuMethod() {
    m_Char2 = (char) (m_Char + 1);
    m_Short2 = (short) (m_Short + 1);
    StaticsTest2PublicClass cls = new StaticsTest2PublicClass();
    m_Int2 = m_Int + cls.getNumber();
    m_Long2 = m_Long + m_BaseInt;
    m_Float2 = m_Float + 1;
    m_Double2 = m_Double + 1;
    if(RootbeerGpu.isOnGpu()){
      m_Bool = true;
      m_Bool2 = true;
      cls.setNumber2(90);
    }
  }
View Full Code Here


    }
    if(m_Bool != true){
      System.out.println("static bool");
      return false;
    }
    StaticsTest2PublicClass cls = new StaticsTest2PublicClass();
    int get_number = cls.getNumber2();
    if(get_number != 90){     
      System.out.println("getNumber: "+get_number);     
      return false;
    }
    return true;
View Full Code Here

TOP

Related Classes of org.trifort.rootbeer.testcases.otherpackage2.StaticsTest2PublicClass

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.