Skip to content

Commit dbc43e2

Browse files
committed
Update tests class names
1 parent 6563601 commit dbc43e2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Tests/AnthropicProvider/ChatTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Joomla\Http\Response as HttpResponse;
1111
use PHPUnit\Framework\TestCase;
1212

13-
class ChatTest extends TestCase
13+
class AnthropicChatTest extends TestCase
1414
{
1515
public function testChatReturnsSuccessfulResponse(): void
1616
{

Tests/OpenAIProvider/AudioTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Joomla\Http\Response as HttpResponse;
1010
use PHPUnit\Framework\TestCase;
1111

12-
class AudioTest extends TestCase
12+
class OpenAIAudioTest extends TestCase
1313
{
1414
public function testSpeechGeneratesAudioSuccessfully()
1515
{

Tests/OpenAIProvider/ChatTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Joomla\Http\Response as HttpResponse;
1111
use PHPUnit\Framework\TestCase;
1212

13-
class ChatTest extends TestCase
13+
class OpenAIChatTest extends TestCase
1414
{
1515
public function testSimpleChatCompletion()
1616
{

Tests/OpenAIProvider/EmbeddingTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Joomla\Http\Response as HttpResponse;
1010
use PHPUnit\Framework\TestCase;
1111

12-
class EmbeddingTests extends TestCase
12+
class OpenAIEmbeddingTests extends TestCase
1313
{
1414
public function testCreateEmbeddingsReturnsVectorSuccessfully()
1515
{

Tests/OpenAIProvider/ImageTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Joomla\Http\Response as HttpResponse;
1010
use PHPUnit\Framework\TestCase;
1111

12-
class ImageTest extends TestCase
12+
class OpenAIImageTest extends TestCase
1313
{
1414
public function testGenerateImageReturnsBase64Successfully()
1515
{

Tests/OpenAIProvider/ModelTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Joomla\Http\Response as HttpResponse;
77
use PHPUnit\Framework\TestCase;
88

9-
class ModelTests extends TestCase
9+
class OpenAIModelTests extends TestCase
1010
{
1111
public function testChatUsesDefaultModelWhenNotProvided()
1212
{

Tests/OpenAIProvider/ModerationTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Joomla\Http\Response as HttpResponse;
1010
use PHPUnit\Framework\TestCase;
1111

12-
class ModerationTests extends TestCase
12+
class OpenAIModerationTests extends TestCase
1313
{
1414
public function testModerateReturnsSafeResult()
1515
{

0 commit comments

Comments
 (0)