testing-patterns-php
Installation
SKILL.md
Testing Couchbase PHP Applications
Unit Testing
PHPUnit's built-in mock builder works well for wrapping the collection behind an interface.
composer require --dev phpunit/phpunit
interface UserStoreInterface {
public function getUser(string $id): array;
}