func()

in check/that.go [18:26]


func (t ThatType) Exists() *testerror.Error {
	if !t.exists() {
		return testerror.Newf(
			"%s: resource not found in plan",
			t.ResourceName,
		)
	}
	return nil
}