鉴于此结构和功能:
type ExampleModule struct {
DB *database.Store
AnotherModule AnotherModuleInterface
}
func(m *ExampleModule) A (i int, id int[]) error{
err := m.AnotherModuke.SomeFunc(i, id)
}
如何进行单元测试以确保SomeFunc
在运行该函数时调用它A
?