Add support for notifications
[ric-plt/sdlgo.git] / example_test.go
1 /*
2    Copyright (c) 2019 AT&T Intellectual Property.
3    Copyright (c) 2018-2019 Nokia.
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 */
17
18 package sdlgo_test
19
20 import (
21         "fmt"
22
23         "gerrit.o-ran-sc.org/r/ric-plt/sdlgo"
24 )
25
26 var sdl *sdlgo.SdlInstance
27
28 func init() {
29         sdl = sdlgo.NewSdlInstance("namespace", sdlgo.NewDatabase())
30 }
31
32 func ExampleSdlInstance_Set() {
33         err := sdl.Set("stringdata", "data", "intdata", 42)
34         if err != nil {
35                 panic(err)
36         } else {
37                 fmt.Println("Data written successfully")
38         }
39         // Output: Data written successfully
40 }
41
42 func ExampleSdlInstance_Get() {
43         retMap, err := sdl.Get([]string{"stringdata", "intdata"})
44         if err != nil {
45                 panic(err)
46         } else {
47                 fmt.Println(retMap)
48         }
49 }