Changeset 43571 for trunk/tests/phpunit/tests/date/query.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/date/query.php
r42343 r43571 396 396 397 397 $found = $q->build_value( 398 'BETWEEN', array( 398 'BETWEEN', 399 array( 399 400 2 => 4, 400 401 3 => 5, … … 456 457 457 458 $found = $q->build_value( 458 'NOT BETWEEN', array( 459 'NOT BETWEEN', 460 array( 459 461 2 => 4, 460 462 3 => 5, … … 514 516 array( 515 517 'year' => 2011, 516 ), true 518 ), 519 true 517 520 ); 518 521 $this->assertSame( '2011-12-31 23:59:59', $found ); … … 525 528 array( 526 529 'year' => 2011, 527 ), false 530 ), 531 false 528 532 ); 529 533 $this->assertSame( '2011-01-01 00:00:00', $found ); … … 536 540 array( 537 541 'year' => 2011, 538 ), false 542 ), 543 false 539 544 ); 540 545 $this->assertSame( '2011-01-01 00:00:00', $found );
Note: See TracChangeset
for help on using the changeset viewer.