├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── LICENSE.md ├── README.md ├── bootstrap.php.dist ├── composer.json ├── composer.lock └── php ├── WP_Mock.php └── WP_Mock ├── API ├── constant-mocks.php ├── dummy-files │ ├── themes │ │ └── vip │ │ │ └── plugins │ │ │ └── vip-init.php │ └── wp-includes │ │ └── class-http.php └── function-mocks.php ├── Action.php ├── DeprecatedMethodListener.php ├── EventManager.php ├── Filter.php ├── Functions.php ├── Functions ├── Handler.php └── ReturnSequence.php ├── Hook.php ├── HookedCallback.php ├── InvokedFilterValue.php ├── Matcher ├── AnyInstance.php └── FuzzyObject.php ├── Tools ├── Constraints │ ├── ExpectationsMet.php │ └── IsEqualHtml.php └── TestCase.php └── Traits ├── AccessInaccessibleClassMembersTrait.php └── MockWordPressObjectsTrait.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/wp_mock/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.php.dist: -------------------------------------------------------------------------------- 1 |