update tests
This commit is contained in:
@@ -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([
|
||||
|
||||
Reference in New Issue
Block a user