Files
cake-contact-us/tests/Fixture/ContactUsFormSubmissionsFixture.php
Brandon Shipley 1be025aa22
Some checks failed
CI / testsuite (mysql, 8.2, ) (push) Failing after 4m30s
CI / testsuite (pgsql, 8.2, ) (push) Failing after 8m57s
CI / testsuite (mysql, 8.4, ) (push) Has started running
CI / testsuite (pgsql, 8.4, ) (push) Has started running
CI / testsuite (sqlite, 8.2, ) (push) Has started running
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Has been cancelled
CI / testsuite (sqlite, 8.4, ) (push) Has been cancelled
CI / Coding Standard & Static Analysis (push) Has been cancelled
tests should be working / build should suceed now
2026-01-28 01:23:58 -08:00

39 lines
742 B
PHP

<?php
declare(strict_types=1);
namespace CakeContactUs\Test\Fixture;
use Cake\TestSuite\Fixture\TestFixture;
use Cake\Utility\Text;
/**
* ContactUsFormSubmissionsFixture
*/
class ContactUsFormSubmissionsFixture extends TestFixture {
/**
* Init method
*
* @return void
*/
public function init(): void {
$this->records = [
[
'id' => Text::uuid(),
'submitted_at' => '2018-07-21 16:11:03',
'client_ip' => 'cli',
'first_name' => 'test',
'last_name' => 'test',
'email' => 'test@test.com',
'contact_subject' => 'subject',
'message' => 'what are your business hours?',
'confirm_email_sent' => true,
'backend_email_sent' => true,
],
];
parent::init();
}
}