summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralpaylan2021-04-14 01:39:29 +0300
committeralpaylan2021-04-14 01:39:29 +0300
commitdd039b4f21ee9cecbead24aedb51d0eb8b2e9495 (patch)
tree4f83ddbcd7a2c1950f1796b4b2c2cfa8ed6a843e
parent891722d7c8554636d33ffe49699181569ad3f1f0 (diff)
downloadgradecoin-dd039b4f21ee9cecbead24aedb51d0eb8b2e9495.tar.gz
gradecoin-dd039b4f21ee9cecbead24aedb51d0eb8b2e9495.tar.bz2
gradecoin-dd039b4f21ee9cecbead24aedb51d0eb8b2e9495.zip
test functions are generated.
-rw-r--r--tests/schema_tests.rs97
1 files changed, 97 insertions, 0 deletions
diff --git a/tests/schema_tests.rs b/tests/schema_tests.rs
new file mode 100644
index 0000000..5c28aed
--- /dev/null
+++ b/tests/schema_tests.rs
@@ -0,0 +1,97 @@
1#[cfg(test)]
2mod tests {
3
4 #[test]
5 fn claims_serialize_correctly() {
6
7 }
8
9 #[test]
10 fn claims_deserialize_correctly() {
11
12 }
13
14 #[test]
15 fn transaction_serialize_correctly() {
16
17 }
18
19 #[test]
20 fn transaction_deserialize_correctly() {
21
22 }
23
24 #[test]
25 fn block_serialize_correctly() {
26
27 }
28
29 #[test]
30 fn block_deserialize_correctly() {
31
32 }
33
34 #[test]
35 fn block_deserialize_when_vec_emptpy() {
36
37 }
38
39 #[test]
40 fn naked_block_serialize_correctly() {
41
42 }
43
44 #[test]
45 fn naked_block_deserialize_correctly() {
46
47 }
48
49 #[test]
50 fn naked_block_deserialize_when_vec_emptpy() {
51
52 }
53
54 #[test]
55 fn user_serialize_correctly() {
56
57 }
58
59 #[test]
60 fn user_deserialize_correctly() {
61
62 }
63
64 #[test]
65 fn metu_id_serialize_correctly() {
66
67 }
68
69 #[test]
70 fn metu_id_deserialize_correctly() {
71
72 }
73
74 #[test]
75 fn auth_request_serialize_correctly() {
76
77 }
78
79 #[test]
80 fn auth_request_deserialize_correctly() {
81
82 }
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97} \ No newline at end of file