-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsts_test.go
41 lines (37 loc) · 1.19 KB
/
consts_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package gokwallet
import (
"github.com/google/uuid"
)
// Strings.
const (
appIdTest string = "GoKwallet_Test"
appIdTestAlt string = "GoKwallet_Test_Alternate"
)
// Identifiers/names/keys.
var (
walletTest uuid.UUID = uuid.New()
walletTestAlt uuid.UUID = uuid.New()
folderTest uuid.UUID = uuid.New()
blobTest uuid.UUID = uuid.New()
mapTest uuid.UUID = uuid.New()
passwordTest uuid.UUID = uuid.New()
passwordTestRename uuid.UUID = uuid.New()
unknownItemTest uuid.UUID = uuid.New()
)
// Values.
var (
testBytes []byte = []byte(uuid.New().String())
testBytesReplace []byte = []byte(uuid.New().String())
testPassword string = uuid.New().String()
testPasswordReplace string = uuid.New().String()
testMap map[string]string = map[string]string{
uuid.New().String(): uuid.New().String(),
uuid.New().String(): uuid.New().String(),
uuid.New().String(): uuid.New().String(),
}
testMapReplace map[string]string = map[string]string{
uuid.New().String(): uuid.New().String(),
uuid.New().String(): uuid.New().String(),
uuid.New().String(): uuid.New().String(),
}
)