mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
95 lines
1.6 KiB
Rust
95 lines
1.6 KiB
Rust
// Copyright (C) 2019-2021 Aleo Systems Inc.
|
|
// This file is part of the Leo library.
|
|
|
|
// The Leo library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// The Leo library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
use super::IntegerTester;
|
|
|
|
test_uint!(TestU16);
|
|
|
|
#[test]
|
|
fn test_u16_min() {
|
|
TestU16::test_min();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_max() {
|
|
TestU16::test_max();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_add() {
|
|
TestU16::test_add();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_sub() {
|
|
TestU16::test_sub();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_mul() {
|
|
TestU16::test_mul();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_div() {
|
|
TestU16::test_div();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_pow() {
|
|
TestU16::test_pow();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_eq() {
|
|
TestU16::test_eq();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_ne() {
|
|
TestU16::test_ne();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_ge() {
|
|
TestU16::test_ge();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_gt() {
|
|
TestU16::test_gt();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_le() {
|
|
TestU16::test_le();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_lt() {
|
|
TestU16::test_lt();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_console_assert() {
|
|
TestU16::test_console_assert();
|
|
}
|
|
|
|
#[test]
|
|
fn test_u16_ternary() {
|
|
TestU16::test_ternary();
|
|
}
|