blob: aa15b7203b7ace85b57708e88618df37cd08087b [file] [log] [blame] [edit]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package moduletest
// Progress represents the status of a test file as it executes.
//
// We will include the progress markers to provide feedback as each test file
// executes.
//
//go:generate go tool golang.org/x/tools/cmd/stringer -type=Progress progress.go
type Progress int
const (
Starting Progress = iota
Running
TearDown
Complete
)