We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97f566f commit 7e725e8Copy full SHA for 7e725e8
src/com/danga/MemCached/test/UnitTests.java
@@ -134,6 +134,20 @@ public static void test14() {
134
mc.storeCounter( "counterTest123", 0 );
135
assert mc.keyExists( "counterTest123" );
136
}
137
+
138
+ public static void test15() {
139
140
+ Map stats = mc.statsItems();
141
+ assert stats != null;
142
143
+ stats = mc.statsSlabs();
144
145
+ }
146
147
+ public static void test16() {
148
+ assert !mc.set( "foo", null );
149
150
151
152
/**
153
* This runs through some simple tests of the MemCacheClient.
@@ -172,5 +186,7 @@ public static void main(String[] args) {
172
186
test12();
173
187
test13();
174
188
test14();
189
+ test15();
190
+ test16();
175
191
176
192
0 commit comments