Number.max() returns a Number PASSED!
Number.max() length is 2 PASSED!
Number.max() PASSED!
Number.max() checkEmpty() PASSED!
Number.max(undefined, 2.1, 3.2) PASSED!
Number.max(2.1, undefined, 3.2) PASSED!
Number.max(2.1, 3.2, undefined) PASSED!
Number.max('string', 2.1, 3.2) PASSED!
Number.max(2.1, 'string', 3.2) PASSED!
Number.max(2.1, 3.2, 'string') PASSED!
Number.max(Number.NaN, 2.1, 3.2) PASSED!
Number.max(2.1, Number.NaN, 3.2) PASSED!
Number.max(2.1, 3.2, Number.NaN) PASSED!
Number.max(1, 1) PASSED!
Number.max(1, 0) PASSED!
Number.max(0, 1) PASSED!
Number.max(1, 1, 1) PASSED!
Number.max(1, 0, 0) PASSED!
Number.max(0, 1, 0) PASSED!
Number.max(0, 0, 1) PASSED!
Number.max(1, 1, 0) PASSED!
Number.max(1, 0, 1) PASSED!
Number.max(0, 1, 1) PASSED!
Number.max( 0,  0) PASSED!
Number.max( 0,  0) check sign PASSED!
Number.max(-0, -0) PASSED!
Number.max(-0, -0) check sign PASSED!
Number.max( 0, -0) PASSED!
Number.max( 0, -0) check sign PASSED!
Number.max(-0,  0) PASSED!
Number.max(-0,  0) check sign PASSED!
Number.max( 0,  0,  0) PASSED!
Number.max( 0,  0,  0) check sign PASSED!
Number.max(-0, -0, -0) PASSED!
Number.max(-0, -0, -0) check sign PASSED!
Number.max( 0, -0, -0) PASSED!
Number.max( 0, -0, -0) check sign PASSED!
Number.max(-0,  0, -0) PASSED!
Number.max(-0,  0, -0) check sign PASSED!
Number.max(-0, -0,  0) PASSED!
Number.max(-0, -0,  0) check sign PASSED!
Number.max( 0,  0, -0) PASSED!
Number.max( 0,  0, -0) check sign PASSED!
Number.max( 0, -0,  0) PASSED!
Number.max( 0, -0,  0) check sign PASSED!
Number.max(-0,  0,  0) PASSED!
Number.max(-0,  0,  0) check sign PASSED!
Number.max(null, 1) PASSED!
Number.max(-1, null) PASSED!
Number.max(false, true) PASSED!
Number.max(Number.NEGATIVE_INFINITY, Number.POSITIVE_INFINITY) PASSED!
Number.max(Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY) PASSED!
Number.max(Number.MIN_VALUE, 0) PASSED!
Number.max(Number.POSITIVE_INFINITY, Number.MAX_VALUE) PASSED!
