You are here

class LogicalTest in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/LogicalTest.php \LogicalTest

Hierarchy

  • class \LogicalTest extends \PHPUnit_Framework_TestCase

Expanded class hierarchy of LogicalTest

File

vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/LogicalTest.php, line 6

View source
class LogicalTest extends PHPUnit_Framework_TestCase {
  public function setUp() {
    if (!defined('PHPEXCEL_ROOT')) {
      define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
    }
    require_once PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php';
    PHPExcel_Calculation_Functions::setCompatibilityMode(PHPExcel_Calculation_Functions::COMPATIBILITY_EXCEL);
  }
  public function testTRUE() {
    $result = PHPExcel_Calculation_Logical::TRUE();
    $this
      ->assertEquals(TRUE, $result);
  }
  public function testFALSE() {
    $result = PHPExcel_Calculation_Logical::FALSE();
    $this
      ->assertEquals(FALSE, $result);
  }

  /**
   * @dataProvider providerAND
   */
  public function testAND() {
    $args = func_get_args();
    $expectedResult = array_pop($args);
    $result = call_user_func_array(array(
      'PHPExcel_Calculation_Logical',
      'LOGICAL_AND',
    ), $args);
    $this
      ->assertEquals($expectedResult, $result);
  }
  public function providerAND() {
    return new testDataFileIterator('rawTestData/Calculation/Logical/AND.data');
  }

  /**
   * @dataProvider providerOR
   */
  public function testOR() {
    $args = func_get_args();
    $expectedResult = array_pop($args);
    $result = call_user_func_array(array(
      'PHPExcel_Calculation_Logical',
      'LOGICAL_OR',
    ), $args);
    $this
      ->assertEquals($expectedResult, $result);
  }
  public function providerOR() {
    return new testDataFileIterator('rawTestData/Calculation/Logical/OR.data');
  }

  /**
   * @dataProvider providerNOT
   */
  public function testNOT() {
    $args = func_get_args();
    $expectedResult = array_pop($args);
    $result = call_user_func_array(array(
      'PHPExcel_Calculation_Logical',
      'NOT',
    ), $args);
    $this
      ->assertEquals($expectedResult, $result);
  }
  public function providerNOT() {
    return new testDataFileIterator('rawTestData/Calculation/Logical/NOT.data');
  }

  /**
   * @dataProvider providerIF
   */
  public function testIF() {
    $args = func_get_args();
    $expectedResult = array_pop($args);
    $result = call_user_func_array(array(
      'PHPExcel_Calculation_Logical',
      'STATEMENT_IF',
    ), $args);
    $this
      ->assertEquals($expectedResult, $result);
  }
  public function providerIF() {
    return new testDataFileIterator('rawTestData/Calculation/Logical/IF.data');
  }

  /**
   * @dataProvider providerIFERROR
   */
  public function testIFERROR() {
    $args = func_get_args();
    $expectedResult = array_pop($args);
    $result = call_user_func_array(array(
      'PHPExcel_Calculation_Logical',
      'IFERROR',
    ), $args);
    $this
      ->assertEquals($expectedResult, $result);
  }
  public function providerIFERROR() {
    return new testDataFileIterator('rawTestData/Calculation/Logical/IFERROR.data');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LogicalTest::providerAND public function
LogicalTest::providerIF public function
LogicalTest::providerIFERROR public function
LogicalTest::providerNOT public function
LogicalTest::providerOR public function
LogicalTest::setUp public function
LogicalTest::testAND public function @dataProvider providerAND
LogicalTest::testFALSE public function
LogicalTest::testIF public function @dataProvider providerIF
LogicalTest::testIFERROR public function @dataProvider providerIFERROR
LogicalTest::testNOT public function @dataProvider providerNOT
LogicalTest::testOR public function @dataProvider providerOR
LogicalTest::testTRUE public function