### Run All Tests in Go Text Source: https://github.com/golang/text/blob/master/README.md Execute all tests within the Go Text repository. Add the '-tags icu' flag to include ICU conformance tests if ICU is installed. ```bash go test ./... ``` ```bash go test ./... -tags icu ``` -------------------------------- ### Generate Tables in Go Text Source: https://github.com/golang/text/blob/master/README.md Run the go generate command to create tables for the Go Text repository. This command uses the Unicode version from core and the CLDR version defined in golang.org/x/text/unicode/cldr by default. ```bash go generate ``` -------------------------------- ### Update Unicode Version for Table Generation Source: https://github.com/golang/text/blob/master/README.md Update a specific Unicode version for table generation by setting the UNICODE_VERSION environment variable before running 'go generate'. This may also update relevant packages in core and the idna package in x/net. ```bash UNICODE_VERSION=x.x.x go generate ``` -------------------------------- ### Update CLDR Version for Table Generation Source: https://github.com/golang/text/blob/master/README.md Update a specific CLDR version for table generation by setting the CLDR_VERSION environment variable before running 'go generate'. ```bash CLDR_VERSION=version go generate ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.