MySQL 9.1.0
Source Code Documentation
|
The Google Test unit-testing framework is available in MySQL source trees and distributions.
Google Test, like MyTAP, provides a unit- testing framework, but Google Test provides richer functionality, such as:
Google Test runs on many platforms. Some functionality is missing on some platforms (such as death tests and parameterized tests), so those features should not be used.
This section provides notes about using Google Test within the context of MySQL development. For general-purpose information about Google Test, see these resources:
Most of The Google Test unit test files are located in the unittest/gunit directory. You can look at these files to see how tests are written. Here are some examples:
sql_list-t.cc
: A simple test of some list classesmdl-t.cc
: Some tests of metadata locking (MDL), including testing of lock acquisition from multiple threadsmdl_mytap-t.cc
: The same tests as mdl-t.cc, but written for MyTAP, to illustrate some features of Google TestMost MyTAP-based tests are likely easily converted to Google Test. However, there might be low-level tests that absolutely must be run on every platform, and thus require MyTAP.
To see what options are available, run a test executable with the --help
option.