master > master: codego initialisiert

This commit is contained in:
RD
2021-05-09 18:22:12 +02:00
parent f4ee7601fd
commit f1a957db03
17 changed files with 1255 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package schema_test
/* ---------------------------------------------------------------- *
* UNIT TESTING
* ---------------------------------------------------------------- */
import (
"logik/aussagenlogik/schema"
"testing"
"github.com/stretchr/testify/assert"
)
/* ---------------------------------------------------------------- *
* TESTCASE ParseExpr
* ---------------------------------------------------------------- */
func TestParseExpr(test *testing.T) {
var assert = assert.New(test)
assert.Equal(0, 0)
schema.ParseExpr("A0")
}