20 lines
392 B
PHP
20 lines
392 B
PHP
<?php
|
|
namespace Tests\Data\Admin;
|
|
|
|
class CustomerData{
|
|
const Customer_Info = [
|
|
'name' => 'Admin',
|
|
'email' => 'Admin@163.com',
|
|
'pwd' => '123456',
|
|
'customer_group' => '',
|
|
|
|
];
|
|
const Customer_Info_Alter = [
|
|
'name' => 'test1',
|
|
'email' => 'test1@163.com',
|
|
'pwd' => '1234567',
|
|
'customer_group' => '',
|
|
|
|
];
|
|
}
|