We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9ef5b9 commit 6448810Copy full SHA for 6448810
samples/client/petstore/csharp/OpenAPIClient/src/Org.OpenAPITools.Test/Model/PetTests.cs
@@ -43,8 +43,7 @@ public class PetTests
43
[SetUp]
44
public void Init()
45
{
46
- // TODO uncomment below to create an instance of Pet
47
- //instance = new Pet();
+ instance = new Pet(name: "Csharp test", photoUrls: new List<string> { "http://petstore.com/csharp_test" });
48
}
49
50
/// <summary>
@@ -53,7 +52,6 @@ public void Init()
53
52
[TearDown]
54
public void Cleanup()
55
56
- instance = new Pet(name: "Csharp test", photoUrls: new List<string> { "http://petstore.com/csharp_test" });
57
58
59
0 commit comments