Skip to content

Commit

Permalink
regression test for 5163c2e
Browse files Browse the repository at this point in the history
  • Loading branch information
dnfield committed Oct 14, 2019
1 parent 4ca512e commit 4ddcca7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/svg_parsers_test.dart
Expand Up @@ -45,6 +45,15 @@ void main() {
0.0, 0.0, 1.0, 0.0,
5.0, 6.0, 0.0, 1.0
]));

expect(
parseTransform('matrix(1.5, 2.0, 3.0, 4.0, 5.0, 6.0 )'),
Matrix4.fromList(<double>[
1.5, 2.0, 0.0, 0.0, //
3.0, 4.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
5.0, 6.0, 0.0, 1.0
]));
});

test('FillRule tests', () {
Expand Down

0 comments on commit 4ddcca7

Please sign in to comment.