19 lines
459 B
Go
19 lines
459 B
Go
package automation
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func TestMacroService_FindMacroUploadByID_Nil_Cov12(t *testing.T) {
|
|
s := &MacroService{}
|
|
defer func() { _ = recover() }()
|
|
_, _ = s.findMacroUploadByID(context.Background(), 0, 0)
|
|
}
|
|
|
|
func TestAutomationRuleService_FindAutomationRuleUploadByID_Nil_Cov12(t *testing.T) {
|
|
s := &AutomationRuleService{}
|
|
defer func() { _ = recover() }()
|
|
_, _ = s.findAutomationRuleUploadByID(context.Background(), 0, 0)
|
|
}
|