use super::*;
use assert2::assert;
type Range<const START: isize, const END: isize> = RiIsize<START, END>;
#[test]
#[allow(clippy::assertions_on_constants)]
const fn returns_expected_value() {
const MIN: isize = 42;
const MAX_VOLUME: isize = 84;
type Sut = Range<MIN, MAX_VOLUME>;
const EXPECTED: isize = 84;
const RESULT: isize = Sut::end();
std::assert!(RESULT == EXPECTED);
}