update tests

This commit is contained in:
root
2026-06-08 22:06:30 -04:00
parent 79024235ef
commit 60ecacb7f8
54 changed files with 13243 additions and 5561 deletions
@@ -21,8 +21,38 @@ class PaymentTestNotificationServiceTest extends TestCase
]);
DB::table('users')->insert([
['id' => 10, 'firstname' => 'Primary', 'lastname' => 'Parent', 'email' => 'primary@example.com', 'status' => 'Active'],
['id' => 11, 'firstname' => 'Secondary', 'lastname' => 'Parent', 'email' => 'secondary@example.com', 'status' => 'Active'],
[
'id' => 10,
'firstname' => 'Primary',
'lastname' => 'Parent',
'cellphone' => '5551112222',
'email' => 'primary@example.com',
'address_street' => '123 Main',
'city' => 'City',
'state' => 'ST',
'zip' => '12345',
'accept_school_policy' => 1,
'password' => bcrypt('secret'),
'semester' => 'Spring',
'school_year' => '2024-2025',
'status' => 'Active',
],
[
'id' => 11,
'firstname' => 'Secondary',
'lastname' => 'Parent',
'cellphone' => '5553334444',
'email' => 'secondary@example.com',
'address_street' => '456 Oak',
'city' => 'City',
'state' => 'ST',
'zip' => '12345',
'accept_school_policy' => 1,
'password' => bcrypt('secret'),
'semester' => 'Spring',
'school_year' => '2024-2025',
'status' => 'Active',
],
]);
DB::table('families')->insert([