func()

in check/that.go [36:44]


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