mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
12 lines
144 B
Go
12 lines
144 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestColorizeUi_impl(t *testing.T) {
|
|
var _ cli.Ui = new(ColorizeUi)
|
|
}
|