$this->assertEquals(1, $rows['count']);
}
+ /**
+ * Test contact subtype filter on summary report.
+ *
+ * @throws \CRM_Core_Exception
+ */
+ public function testContactSubtypeNotNull() {
+ $this->individualCreate(['contact_sub_type' => ['Student', 'Parent']]);
+ $this->individualCreate();
+
+ $rows = $this->callAPISuccess('report_template', 'getrows', [
+ 'report_id' => 'contact/summary',
+ 'contact_sub_type_op' => 'nnll',
+ 'contact_sub_type_value' => [],
+ 'contact_type_op' => 'eq',
+ 'contact_type_value' => 'Individual',
+ ]);
+ $this->assertEquals(1, $rows['count']);
+ }
+
+ /**
+ * Test contact subtype filter on summary report.
+ *
+ * @throws \CRM_Core_Exception
+ */
+ public function testContactSubtypeNull() {
+ $this->individualCreate(['contact_sub_type' => ['Student', 'Parent']]);
+ $this->individualCreate();
+
+ $rows = $this->callAPISuccess('report_template', 'getrows', [
+ 'report_id' => 'contact/summary',
+ 'contact_sub_type_op' => 'nll',
+ 'contact_sub_type_value' => [],
+ 'contact_type_op' => 'eq',
+ 'contact_type_value' => 'Individual',
+ ]);
+ $this->assertEquals(1, $rows['count']);
+ }
+
/**
* Test PCP report to ensure total donors and total committed is accurate.
*/