package tests import ( // "testing" "cosync/internal/client" "cosync/internal/server" ) func TestAll() bool { TestClientServerCommunication() return false } func TestClientServerCommunication() bool { go client.Run() go server.Run() return false } func TestConfigLoading() bool { return false } func TestConfigCreation() bool { return false }