29 lines
329 B
Go
29 lines
329 B
Go
package packet
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.mmo.to/ppForge/ppforge/protocol"
|
|
)
|
|
|
|
func GenerateProtocol1() *protocol.Protocol {
|
|
|
|
return nil
|
|
}
|
|
func GenerateProtocol2() *protocol.Protocol {
|
|
|
|
return nil
|
|
}
|
|
|
|
func TestBinaryGeneration(t *testing.T) {
|
|
|
|
}
|
|
|
|
func TestJsonExport(t *testing.T) {
|
|
|
|
}
|
|
|
|
func TestJsonImport(t *testing.T) {
|
|
|
|
}
|