Go to the source code of this file.
|
| | flutter::testing::TEST (DlOpSpy, DidDrawIsFalseByDefault) |
| |
| | flutter::testing::TEST (DlOpSpy, EmptyDisplayList) |
| |
| | flutter::testing::TEST (DlOpSpy, SetColor) |
| |
| | flutter::testing::TEST (DlOpSpy, SetColorSource) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawColor) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawPaint) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawLine) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawDashedLine) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawRect) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawOval) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawCircle) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawRRect) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawPath) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawArc) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawPoints) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawVertices) |
| |
| | flutter::testing::TEST (DlOpSpy, Images) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawDisplayList) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawTextBlob) |
| |
| | flutter::testing::TEST (DlOpSpy, DrawShadow) |
| |
◆ ASSERT_DID_DRAW
| #define ASSERT_DID_DRAW |
( |
|
spy, |
|
|
|
dl |
|
) |
| |
Value: do { \
ASSERT_TRUE(spy.did_draw()); \
ASSERT_TRUE(dl->modifies_transparent_black()); \
} while (0)
Definition at line 25 of file dl_op_spy_unittests.cc.
26 { \
27 ASSERT_TRUE(spy.did_draw()); \
28 ASSERT_TRUE(dl->modifies_transparent_black()); \
29 } while (0)
◆ ASSERT_NO_DRAW
| #define ASSERT_NO_DRAW |
( |
|
spy, |
|
|
|
dl |
|
) |
| |
Value: do { \
ASSERT_FALSE(spy.did_draw()); \
ASSERT_FALSE(dl->modifies_transparent_black()); \
} while (0)
Definition at line 31 of file dl_op_spy_unittests.cc.
32 { \
33 ASSERT_FALSE(spy.did_draw()); \
34 ASSERT_FALSE(dl->modifies_transparent_black()); \
35 } while (0)