Passed
Push — develop ( a1a700...3db8d1 )
by Freddie
08:39
created
tests/Unit/BuilderTest.php 1 patch
Upper-Lower-Casing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $this->assertEquals(<<<T
45 45
 CREATE DATABASE $name CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
46 46
 
47
-T
47
+t
48 48
 , $builder->toSql());
49 49
     }
50 50
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         $this->assertEquals(<<<T
58 58
 CREATE DATABASE $name COLLATE latin1_general_100_ci_ai_sc;
59 59
 
60
-T
60
+t
61 61
 , $builder->toSql());
62 62
     }
63 63
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $builder->createDatabase($name);
70 70
         $this->assertEquals(<<<T
71 71
 
72
-T
72
+t
73 73
 , $builder->toSql());
74 74
     }
75 75
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
 USE $name;
86 86
 
87
-T
87
+t
88 88
 , $builder->toSql());
89 89
     }
90 90
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $this->assertEquals(<<<T
98 98
 CREATE DATABASE $name COLLATE latin1_general_100_ci_ai_sc;
99 99
 
100
-T
100
+t
101 101
 , $builder->toSql());
102 102
     }
103 103
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         $builder = new Builder('SQLite');
109 109
         $builder->createDatabaseWithUse($name);
110 110
         $this->assertEquals(<<<T
111
-T
111
+t
112 112
 , $builder->toSql());
113 113
     }
114 114
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $this->assertEquals(<<<T
123 123
 CREATE USER '$name'@'%' IDENTIFIED BY '$password';
124 124
 
125
-T
125
+t
126 126
 , $builder->toSql());
127 127
     }
128 128
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 CREATE USER $name FOR LOGIN $name;
140 140
 GO
141 141
 
142
-T
142
+t
143 143
 , $builder->toSql());
144 144
     }
145 145
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         $builder = new Builder('SQLite');
152 152
         $builder->createUser($name, $password);
153 153
         $this->assertEquals(<<<T
154
-T
154
+t
155 155
 , $builder->toSql());
156 156
     }
157 157
 
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
 
168 168
 GRANT ALL PRIVILEGES ON *.* TO '$name'@'host';
169 169
 
170
-T
170
+t
171 171
 , $builder->toSql());
172 172
     }
173 173
 
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
 GRANT ALL TO $name;
188 188
 GO
189 189
 
190
-T
190
+t
191 191
 , $builder->toSql());
192 192
     }
193 193
 
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
         $builder = new Builder('SQLite');
200 200
         $builder->createUser($name, $password, 'host', ['ALL PRIVILEGES']);
201 201
         $this->assertEquals(<<<T
202
-T
202
+t
203 203
 , $builder->toSql());
204 204
     }
205 205
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     foo INT DEFAULT NULL COMMENT 'foo'
213 213
 ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB;
214 214
 
215
-T
215
+t
216 216
 , $builder->toSql());
217 217
     }
218 218
 
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 
228 228
 EXEC sp_addextendedproperty N'MS_Description', N'foo', N'SCHEMA', 'dbo', N'TABLE', 'bar', N'COLUMN', foo;
229 229
 
230
-T
230
+t
231 231
 , $builder->toSql());
232 232
     }
233 233
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     foo INTEGER DEFAULT NULL
241 241
 );
242 242
 
243
-T
243
+t
244 244
 , $builder->toSql());
245 245
     }
246 246
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 
293 293
 ALTER TABLE fuz ADD CONSTRAINT FK_51837B119A5BAE65 FOREIGN KEY (barId) REFERENCES bar (id);
294 294
 
295
-T
295
+t
296 296
 , $builder->toSql());
297 297
     }
298 298
 
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 
361 361
 ALTER TABLE baz ADD CONSTRAINT FK_782404989A5BAE65 FOREIGN KEY (barId) REFERENCES bar (id);
362 362
 
363
-T
363
+t
364 364
 , $builder->toSql());
365 365
     }
366 366
 
Please login to merge, or discard this patch.