Skip to content

Commit 6c645de

Browse files
committed
Fix: tests
1 parent 170dc1f commit 6c645de

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

MapperAI.sln.DotSettings.user

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@
44
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.ClassMapperTests.Test1</TestId>
55
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.FileMapperTests.Test1</TestId>
66
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.FileMapperTests.Test_Should_Create_1_File_With_CSharp_Extension</TestId>
7+
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.PdfMapperTests.Test1</TestId>
8+
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.FileMapperTests.Test_Should_Create_4_Files_With_Go_Extension</TestId>
9+
<TestId>xUnit::8B3E109D-96CA-4B6D-B379-6AF70646DC25::net8.0::MapperAI.Test.FileMapperTests.Test_Should_Create_4_Files_With_CSharp_Extension</TestId>
710
</TestAncestor>
811
&lt;/SessionState&gt;</s:String></wpf:ResourceDictionary>

test/MapperAI.Test/ClassMapperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class ClassMapperTests
1313
private readonly ClientConfiguration _clientConfiguration = new ()
1414
{
1515
Type = ModelType.Gemini,
16-
Model = "deepseek-r1",
16+
Model = "gemini-2.0-flash",
1717
ApiKey = Environment.GetEnvironmentVariable("GEMINI_KEY")
1818
};
1919

test/MapperAI.Test/FileMapperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public async Task Test_Should_Create_4_Files_With_Go_Extension()
3030
FileMapperConfiguration configuration = new FileMapperConfiguration(InputFolder, OutputFolder)
3131
{
3232
NameSpace = "MapperAI.Test.MappedClasses",
33-
Extension = "go"
33+
Extension = "go",
3434
};
3535
await _mapper.MapAsync(configuration, _clientConfiguration);
3636
var files = Directory.GetFiles(OutputFolder);

0 commit comments

Comments
 (0)