leo/compiler/tests/integers/u16/mod.rs

115 lines
2.0 KiB
Rust
Raw Normal View History

2021-02-02 07:26:56 +03:00
// Copyright (C) 2019-2021 Aleo Systems Inc.
2020-08-18 13:50:26 +03:00
// 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/>.
2020-06-06 02:35:50 +03:00
use crate::{
2021-03-22 16:48:48 +03:00
assert_satisfied, expect_asg_error, expect_compiler_error, generate_main_input, integers::IntegerTester,
2020-06-09 05:13:47 +03:00
parse_program,
2020-06-06 02:35:50 +03:00
};
2020-10-31 03:31:09 +03:00
use leo_ast::InputValue;
use leo_input::types::{IntegerType, U16Type, UnsignedIntegerType};
2020-06-06 02:35:50 +03:00
test_uint!(
TestU16,
u16,
IntegerType::Unsigned(UnsignedIntegerType::U16Type(U16Type {})),
UInt16
);
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_min() {
2020-07-31 01:41:03 +03:00
TestU16::test_min();
}
#[test]
fn test_u16_min_fail() {
TestU16::test_min_fail();
2020-07-16 05:55:04 +03:00
}
#[test]
fn test_u16_max() {
2020-07-31 01:41:03 +03:00
TestU16::test_max();
2020-07-16 05:55:04 +03:00
}
#[test]
2020-07-31 01:41:03 +03:00
fn test_u16_max_fail() {
TestU16::test_max_fail();
2020-07-16 05:55:04 +03:00
}
#[test]
fn test_u16_add() {
TestU16::test_add();
}
#[test]
fn test_u16_sub() {
TestU16::test_sub();
}
#[test]
fn test_u16_mul() {
TestU16::test_mul();
}
2020-06-06 02:35:50 +03:00
#[test]
2020-07-16 05:55:04 +03:00
fn test_u16_div() {
TestU16::test_div();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_pow() {
TestU16::test_pow();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_eq() {
TestU16::test_eq();
}
2020-06-06 02:35:50 +03:00
2020-08-14 10:25:39 +03:00
#[test]
fn test_u16_ne() {
TestU16::test_ne();
}
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_ge() {
TestU16::test_ge();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_gt() {
TestU16::test_gt();
}
2020-06-06 02:35:50 +03:00
2020-07-16 05:55:04 +03:00
#[test]
fn test_u16_le() {
TestU16::test_le();
}
#[test]
fn test_u16_lt() {
TestU16::test_lt();
}
#[test]
2020-08-17 05:14:26 +03:00
fn test_u16_console_assert() {
TestU16::test_console_assert();
2020-07-16 05:55:04 +03:00
}
#[test]
fn test_u16_ternary() {
TestU16::test_ternary();
2020-06-06 02:35:50 +03:00
}