insert([ 'id' => 1, 'name' => 'parent', 'slug' => 'parent', 'is_active' => 1, ]); DB::table('users')->insert([ 'id' => 10, 'school_id' => 1, 'firstname' => 'Parent', 'lastname' => 'User', 'cellphone' => '5551112222', 'email' => 'parent@example.com', 'address_street' => '123 Main', 'city' => 'City', 'state' => 'ST', 'zip' => '12345', 'accept_school_policy' => 1, 'is_verified' => 1, 'status' => 'Active', 'is_suspended' => 0, 'failed_attempts' => 0, 'password' => bcrypt('secret'), 'semester' => 'Fall', 'school_year' => '2025-2026', ]); DB::table('user_roles')->insert([ 'user_id' => 10, 'role_id' => 1, ]); $service = new NotificationRecipientService; $rows = $service->getRecipients('parent'); $this->assertCount(1, $rows); $this->assertSame('parent@example.com', $rows[0]['email']); } }