Index: tests/MatrixTest.cpp |
diff --git a/tests/MatrixTest.cpp b/tests/MatrixTest.cpp |
index 01b2ba4e435a81ed876a35e286c11324e783041c..c4eb9c7011e35c6f72bdd5fde6b42360fda90155 100644 |
--- a/tests/MatrixTest.cpp |
+++ b/tests/MatrixTest.cpp |
@@ -939,6 +939,11 @@ DEF_TEST(Matrix, reporter) { |
test_set9(reporter); |
test_decompScale(reporter); |
+ |
+ mat.setScaleTranslate(2, 3, 1, 4); |
+ mat2.setScale(2, 3); |
+ mat2.postTranslate(1, 4); |
+ REPORTER_ASSERT(reporter, mat == mat2); |
} |
DEF_TEST(Matrix_Concat, r) { |