// Code generated by generators/resource/main.go; DO NOT EDIT.

package codestarnotifications_test

import (
	"regexp"
	"testing"

	"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
	"github.com/hashicorp/terraform-provider-awscc/internal/acctest"
)

func TestAccAWSCodeStarNotificationsNotificationRule_basic(t *testing.T) {
	td := acctest.NewTestData(t, "AWS::CodeStarNotifications::NotificationRule", "awscc_codestarnotifications_notification_rule", "test")

	td.ResourceTest(t, []resource.TestStep{
		{
			Config:      td.EmptyConfig(),
			ExpectError: regexp.MustCompile("Missing required argument"),
		},
	})
}