add FTP Upload

This commit is contained in:
Marko
2023-09-27 15:07:34 +02:00
parent a1a2eb84b3
commit a97fec167c
29 changed files with 175 additions and 25090 deletions

View File

@@ -1,15 +0,0 @@
<?php
namespace App\Tests\EventSubscriber;
use App\EventSubscriber\SlackNotifySubscriber;
use PHPUnit\Framework\TestCase;
class SlackNotifySubscriberTest extends TestCase
{
public function testSendSlack()
{
}
}

View File

@@ -1,16 +0,0 @@
<?php
namespace App\Tests;
use ApiPlatform\Core\Bridge\Symfony\Bundle\Test\ApiTestCase;
class OrdersTest extends ApiTestCase
{
public function testSomething(): void
{
$response = static::createClient()->request('GET', '/');
$this->assertResponseIsSuccessful();
$this->assertJsonContains(['@id' => '/']);
}
}

View File

@@ -1,13 +0,0 @@
<?php
namespace App\Tests\Shopware;
use PHPUnit\Framework\TestCase;
class OrdersTest extends TestCase
{
public function testSomething(): void
{
$this->assertTrue(true);
}
}