Lines Matching +full:big +full:- +full:tests
4 * Use of this source code is governed by a BSD-style license that can be
12 #include "tests/Test.h"
24 // Tests that isFinite() will reject any rect with +/-inf values
31 SkScalar big = SkIntToScalar(100); in DEF_TEST() local
35 SkRect rect = SkRect::MakeXYWH(small, small, big, big); in DEF_TEST()
38 const SkScalar invalid[] = { nan, inf, -inf }; in DEF_TEST()
40 check_invalid(reporter, small, small, big, invalid[i]); in DEF_TEST()
41 check_invalid(reporter, small, small, invalid[i], big); in DEF_TEST()
42 check_invalid(reporter, small, invalid[i], big, big); in DEF_TEST()
43 check_invalid(reporter, invalid[i], small, big, big); in DEF_TEST()
47 // need tests for SkStrSearch