@@ -16,6 +16,7 @@ class MySQLDatatypeTest extends TestCase
1616 public function testValid (): void
1717 {
1818 new MySQL ('VARCHAR ' , ['length ' => '50 ' ]);
19+ $ this ->expectNotToPerformAssertions ();
1920 }
2021
2122 public function testInvalidType (): void
@@ -68,6 +69,7 @@ public function testValidNumericLengths(): void
6869 'numeric_scale ' => '20 ' ,
6970 ],
7071 ]);
72+ $ this ->expectNotToPerformAssertions ();
7173 }
7274
7375 /**
@@ -91,6 +93,7 @@ public function testValidIntegerLengths(): void
9193 new MySQL ('INTEGER ' );
9294 new MySQL ('INTEGER ' , ['length ' => '' ]);
9395 new MySQL ('INTEGER ' , ['length ' => '255 ' ]);
96+ $ this ->expectNotToPerformAssertions ();
9497 }
9598
9699 /**
@@ -116,6 +119,7 @@ public function testValidFloatLengths(): void
116119 new MySQL ('FLOAT ' , ['length ' => '' ]);
117120 new MySQL ('FLOAT ' , ['length ' => '255 ' ]);
118121 new MySQL ('FLOAT ' , ['length ' => '255,0 ' ]);
122+ $ this ->expectNotToPerformAssertions ();
119123 }
120124
121125 /**
@@ -144,6 +148,7 @@ public function testValidVariableCharacterLengths(): void
144148 'character_maximum ' => '16777216 ' ,
145149 ],
146150 ]);
151+ $ this ->expectNotToPerformAssertions ();
147152 }
148153
149154 public function testValidFixedCharacterLengths (): void
@@ -153,6 +158,7 @@ public function testValidFixedCharacterLengths(): void
153158 new MySQL ('CHAR ' , ['length ' => '' ]);
154159 new MySQL ('CHAR ' , ['length ' => '1 ' ]);
155160 new MySQL ('CHAR ' , ['length ' => '255 ' ]);
161+ $ this ->expectNotToPerformAssertions ();
156162 }
157163
158164 public function testVariableCharacterWithoutLength (): void
0 commit comments