2024-04-09 20:34:23 +00:00
|
|
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
|
|
|
|
package resource
|
|
|
|
|
|
|
|
import (
|
|
|
|
_ "fmt"
|
|
|
|
_ "github.com/stretchr/testify/assert"
|
|
|
|
_ "os"
|
|
|
|
_ "strings"
|
|
|
|
_ "testing"
|
2024-07-01 21:54:18 +00:00
|
|
|
"decl/internal/command"
|
2024-04-09 20:34:23 +00:00
|
|
|
)
|
|
|
|
|
2024-07-01 21:54:18 +00:00
|
|
|
type MockCommand command.Command
|
2024-04-09 20:34:23 +00:00
|
|
|
|
|
|
|
func (m *MockCommand) Execute(value any) ([]byte, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|