blob: b2265502852b76e630118bf91bc3b297d28fd173 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package tap
// Directive is a TAP directive (TODO|SKIP|<none>)
type Directive int
// Valid Tap directives.
const (
None Directive = iota
Todo
Skip
)