Extend schema and start Unit test implementation

Does not compile and work yet
This commit is contained in:
2024-07-02 10:13:11 +02:00
parent 130613b717
commit bd89ce7cc9
6 changed files with 3580 additions and 21 deletions

View File

@@ -0,0 +1,15 @@
// Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
// All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package archive
import (
"encoding/json"
"testing"
)
func TestClusterConfig(t *testing.T) {
var fsa FsArchive
version, err := fsa.Init(json.RawMessage("{\"path\":\"testdata/archive\"}"))
}