This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/tests/000-fill.phpt

17 lines
360 B
PHP

--TEST--
Test for `Arma\Fill`.
--SKIPIF--
<?php require_once 'includes/loaded.php'; ?>
--FILE--
<?php
require_once 'includes/assert.php';
$arr = [
Arma\Fill::NONE, Arma\Fill::ZEROS,
Arma\Fill::ONES, Arma\Fill::EYE,
Arma\Fill::RANDU, Arma\Fill::RANDN
];
$expected = [0, 1, 2, 3, 4, 5];
batch_assert('Arma\\Fill', [$expected, $arr]);
?>
--EXPECT--