jx/internal/resource/mock_command_test.go

19 lines
328 B
Go
Raw Normal View History

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"
"decl/internal/command"
2024-04-09 20:34:23 +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
}