create([ 'firstname' => 'Test', 'lastname' => 'User', 'email' => 'ui@example.com', 'cellphone' => '5555555555', 'address_street' => '123 Main', 'city' => 'City', 'state' => 'ST', 'zip' => '12345', 'accept_school_policy' => 1, 'status' => 'Active', 'password' => bcrypt('secret'), 'semester' => 'Fall', 'school_year' => '2025-2026', ]); $service = new UiStyleService; $prefs = $service->update($user->id, [ 'accent' => 'blue', 'menu' => 'custom', 'menu_bg' => '#112233', 'menu_text' => '#ffffff', 'menu_mode' => 'dark', ]); $this->assertSame('blue', $prefs->style_color); $this->assertSame('custom', $prefs->menu_color); } }