You appear to be a bot. Output may be restricted
Description
Usage
Tests_WP_Date_Query::test_build_value_compare_not_between_incorrect_array_key();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/date/query.php
Lines:
1 to 14 of 14
public function test_build_value_compare_not_between_incorrect_array_key() { $q = new WP_Date_Query( array() ); $found = $q->build_value( 'NOT BETWEEN', array( 2 => 4, 3 => 5, ) ); $this->assertSame( '4 AND 5', $found ); }