CoSync/tests/tests.go
2025-01-01 22:18:08 +01:00

26 lines
357 B
Go

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
}