David PHAM-VAN

Remove debug prints in tests

@@ -9,7 +9,6 @@ import 'package:vector_math/vector_math_64.dart'; @@ -9,7 +9,6 @@ import 'package:vector_math/vector_math_64.dart';
9 void main() { 9 void main() {
10 test('Pdf', () { 10 test('Pdf', () {
11 var img = new Uint32List(10 * 10); 11 var img = new Uint32List(10 * 10);
12 - print(img.length);  
13 img.fillRange(0, img.length - 1, 0x12345678); 12 img.fillRange(0, img.length - 1, 0x12345678);
14 13
15 var pdf = new PDFDocument(deflate: zlib.encode); 14 var pdf = new PDFDocument(deflate: zlib.encode);
@@ -22,7 +22,6 @@ void main() { @@ -22,7 +22,6 @@ void main() {
22 .asByteData()); 22 .asByteData());
23 var s = "Hello World!"; 23 var s = "Hello World!";
24 var r = ttf.stringBounds(s); 24 var r = ttf.stringBounds(s);
25 - print(r);  
26 const FS = 20.0; 25 const FS = 20.0;
27 g.setColor(new PDFColor(0.0, 1.0, 1.0)); 26 g.setColor(new PDFColor(0.0, 1.0, 1.0));
28 g.drawRect(50.0 + r.x * FS, 30.0 + r.y * FS, r.w * FS, r.h * FS); 27 g.drawRect(50.0 + r.x * FS, 30.0 + r.y * FS, r.w * FS, r.h * FS);
@@ -37,7 +36,6 @@ void main() { @@ -37,7 +36,6 @@ void main() {
37 .asByteData()); 36 .asByteData());
38 37
39 r = roboto.stringBounds(s); 38 r = roboto.stringBounds(s);
40 - print(r);  
41 g.setColor(new PDFColor(0.0, 1.0, 1.0)); 39 g.setColor(new PDFColor(0.0, 1.0, 1.0));
42 g.drawRect(50.0 + r.x * FS, 130.0 + r.y * FS, r.w * FS, r.h * FS); 40 g.drawRect(50.0 + r.x * FS, 130.0 + r.y * FS, r.w * FS, r.h * FS);
43 g.fillPath(); 41 g.fillPath();