@@ -25,7 +25,7 @@ class MockResult extends Dibi\Result
2525}
2626
2727
28- test ('' , function () {
28+ test ('native text conversion preserves boolean values ' , function () {
2929 $ result = new MockResult ;
3030 $ result ->setType ('col ' , Type::Text);
3131 $ result ->setFormat (Type::Text, 'native ' );
@@ -36,7 +36,7 @@ test('', function () {
3636});
3737
3838
39- test ('' , function () {
39+ test ('boolean conversion from diverse representations ' , function () {
4040 $ result = new MockResult ;
4141 $ result ->setType ('col ' , Type::Bool);
4242
@@ -58,7 +58,7 @@ test('', function () {
5858});
5959
6060
61- test ('' , function () {
61+ test ('text conversion of booleans and numerics ' , function () {
6262 $ result = new MockResult ;
6363 $ result ->setType ('col ' , Type::Text);
6464
@@ -74,7 +74,7 @@ test('', function () {
7474});
7575
7676
77- test ('' , function () {
77+ test ('float conversion with various numeric formats ' , function () {
7878 $ result = new MockResult ;
7979 $ result ->setType ('col ' , Type::Float);
8080
@@ -214,7 +214,7 @@ test('', function () {
214214});
215215
216216
217- test ('' , function () {
217+ test ('strict integer conversion with error on empty string ' , function () {
218218 $ result = new MockResult ;
219219 $ result ->setType ('col ' , Type::Integer);
220220
@@ -244,7 +244,7 @@ test('', function () {
244244});
245245
246246
247- test ('' , function () {
247+ test ('dateTime conversion with object instantiation ' , function () {
248248 $ result = new MockResult ;
249249 $ result ->setType ('col ' , Type::DateTime);
250250
@@ -263,7 +263,7 @@ test('', function () {
263263});
264264
265265
266- test ('' , function () {
266+ test ('dateTime conversion using custom format ' , function () {
267267 $ result = new MockResult ;
268268 $ result ->setType ('col ' , Type::DateTime);
269269 $ result ->setFormat (Type::DateTime, 'Y-m-d H:i:s ' );
@@ -283,7 +283,7 @@ test('', function () {
283283});
284284
285285
286- test ('' , function () {
286+ test ('date conversion to DateTime instance ' , function () {
287287 $ result = new MockResult ;
288288 $ result ->setType ('col ' , Type::Date);
289289
@@ -300,7 +300,7 @@ test('', function () {
300300});
301301
302302
303- test ('' , function () {
303+ test ('time conversion to DateTime instance ' , function () {
304304 $ result = new MockResult ;
305305 $ result ->setType ('col ' , Type::Time);
306306
0 commit comments