We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77ca959 commit ea7d4adCopy full SHA for ea7d4ad
1 file changed
src/test/java/org/buddycloud/channelserver/db/jdbc/JDBCNodeStoreTest.java
@@ -2181,6 +2181,14 @@ public void testGetNodeSubscriptionCountReturnsZeroWhereThereAreNone()
2181
assertEquals(0, subscriptionCount);
2182
}
2183
2184
+ @Test
2185
+ public void testGetNodeSubscriptionCountReturnsZeroForOwnerModeratorWhereThereAreNone()
2186
+ throws Exception {
2187
+ int subscriptionCount = store
2188
+ .countNodeSubscriptions(TEST_SERVER1_NODE1_ID, true);
2189
+ assertEquals(0, subscriptionCount);
2190
+ }
2191
+
2192
@Test
2193
public void testGetNodeSubscriptionCountReturnsResultWhereThereAreSome()
2194
throws Exception {
0 commit comments