mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-05 22:00:22 -05:00
17 lines
328 B
Go
17 lines
328 B
Go
package state
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestInmemState(t *testing.T) {
|
|
TestState(t, &InmemState{state: TestStateInitial()})
|
|
}
|
|
|
|
func TestInmemState_impl(t *testing.T) {
|
|
var _ StateReader = new(InmemState)
|
|
var _ StateWriter = new(InmemState)
|
|
var _ StatePersister = new(InmemState)
|
|
var _ StateRefresher = new(InmemState)
|
|
}
|