import ( "github.com/cockroachdb/cockroach/acceptance/cluster" ) func main() { // Create a cluster with 3 nodes c := cluster.Create(t, cluster.TestConfig{NumNodes: 3}) // Start the cluster and wait for all nodes to be ready c.Start() c.WaitForFullReplication() // Perform tests against the cluster... // Destroy the cluster after we're done with it c.Destroy() }In this example, we create a new CockroachDB cluster instance using the `Create()` method with `NumNodes` set to 3, start the cluster with `Start()`, wait for all nodes to be ready with `WaitForFullReplication()`, perform tests against the cluster, and then destroy the cluster with `Destroy()` after we're done with it. This package library is used for acceptance testing of CockroachDB functionality, and is not intended for use in production environments.