开源版本提交

This commit is contained in:
Kris
2025-12-29 22:14:41 +08:00
parent fce7c1ec0b
commit 4216b2080f
3634 changed files with 814409 additions and 2 deletions

18
tests/ExampleTest.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
use Laravel\Lumen\Testing\DatabaseMigrations;
use Laravel\Lumen\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testExample()
{
$multiLangItem = new \CompanysBundle\MultiLang\MultiLangItem('enCN','aaaa');
$multiLangItem->createTable();
}
}