2022-05-21 00:49:13 +02:00
|
|
|
// Copyright 2022 wanderer <a_mirre at utb dot cz>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-05-07 00:31:44 +02:00
|
|
|
package main
|
|
|
|
|
2022-05-12 15:54:16 +02:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
2022-05-07 00:31:44 +02:00
|
|
|
|
2022-05-13 22:41:31 +02:00
|
|
|
// does this test even make sense?
|
|
|
|
func TestExecMain(t *testing.T) {
|
|
|
|
go main()
|
2022-05-27 22:06:30 +02:00
|
|
|
t.Log("Main executed successfully")
|
2022-05-13 22:41:31 +02:00
|
|
|
}
|