Skip to content

Commit

Permalink
fixup! bb4d7fb
Browse files Browse the repository at this point in the history
Reorganize tests docstrings.
  • Loading branch information
lavarou committed Jan 7, 2025
1 parent 9b4df67 commit 4484c3f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
3 changes: 1 addition & 2 deletions tests/integration/pdo/test_prepared_stmt_basic.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/*
This file contains code that runs the PDOStatement::execute() test on PDOStatement
object prepared using a given connection object.
object prepared using a given connection object. It tests PDOStatement without any values bound.
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -21,7 +21,6 @@
- ./base-class
- ./constructor
- ./factory
It tests PDOStatement without any values bound.
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down
3 changes: 1 addition & 2 deletions tests/integration/pdo/test_prepared_stmt_bind_value.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/*
This file contains code that runs the PDOStatement::execute() test on PDOStatement
object prepared using a given connection object.
object prepared using a given connection object. It tests PDOStatement with values bound.
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -21,7 +21,6 @@
- ./base-class
- ./constructor
- ./factory
It tests PDOStatement with values bound.
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/pdo/test_query_1_arg.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
This file contains code that runs the PDO::query test using given connection object.
This file contains code that runs the PDO::query test using given connection object. It tests one argument form of PDO::query().
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -20,7 +20,7 @@
- ./base-class
- ./constructor
- ./factory
It tests one argument form of PDO::query().
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down
3 changes: 1 addition & 2 deletions tests/integration/pdo/test_query_fetch_class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
This file contains code that runs the PDO::query test using given connection object.
This file contains code that runs the PDO::query test using given connection object. It tests the FETCH_CLASS variant of PDO::query().
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -20,7 +20,6 @@
- ./base-class
- ./constructor
- ./factory
It tests the FETCH_CLASS variant of PDO::query().
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down
3 changes: 1 addition & 2 deletions tests/integration/pdo/test_query_fetch_column.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
This file contains code that runs the PDO::query test using given connection object.
This file contains code that runs the PDO::query test using given connection object. It tests the FETCH_COLUMN variant of PDO::query().
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -20,7 +20,6 @@
- ./base-class
- ./constructor
- ./factory
It tests the FETCH_COLUMN variant of PDO::query().
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down
3 changes: 1 addition & 2 deletions tests/integration/pdo/test_query_fetch_into.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

/*
This file contains code that runs the PDO::query test using given connection object.
This file contains code that runs the PDO::query test using given connection object. It tests the FETCH_INTO variant of PDO::query().
It is common for all database driver specific tests that prepare connection objects
using different methods:
- ./mysql:
Expand All @@ -20,7 +20,6 @@
- ./base-class
- ./constructor
- ./factory
It tests the FETCH_INTO variant of PDO::query().
*/

require_once(dirname(__FILE__).'/../../include/tap.php');
Expand Down

0 comments on commit 4484c3f

Please sign in to comment.