File: BCMathTest.php

package info (click to toggle)
php-phpseclib 2.0.30-2%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,784 kB
  • sloc: php: 11,331; sh: 73; xml: 49; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * @author    Andreas Fischer <bantu@phpbb.com>
 * @copyright 2013 Andreas Fischer
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
 */

class Unit_Math_BigInteger_BCMathTest extends Unit_Math_BigInteger_TestCase
{
    public static function setUpBeforeClass(): void
    {
        if (!extension_loaded('bcmath')) {
            self::markTestSkipped('BCMath extension is not available.');
        }

        parent::setUpBeforeClass();

        self::ensureConstant('MATH_BIGINTEGER_MODE', \phpseclib\Math\BigInteger::MODE_BCMATH);
    }
}