CoSync/tests/tests.go

26 lines
357 B
Go
Raw Normal View History

2025-01-01 22:18:08 +01:00
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
}