-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathModelExtensionTest.cs
39 lines (36 loc) · 1.33 KB
/
ModelExtensionTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (c) Mohamed Hassan & Contributors. All rights reserved. See License.md in the project root for license information.
namespace OData2Poco.Tests;
public class ModelExtensionTest : BaseTest
{
[Test]
[TestCase("string", "string")]
[TestCase("List<string>", "string")]
[TestCase("List<Microsoft.OData.SampleService.Models.TripPin.Location>",
"Microsoft.OData.SampleService.Models.TripPin.Location")]
[TestCase("Microsoft.OData.SampleService.Models.TripPin.PersonGender",
"Microsoft.OData.SampleService.Models.TripPin.PersonGender")]
[TestCase("long", "long")]
public void Property_generic_basetype_test(string type, string expected)
{
//Arrange
//Act
var sut = type.GetGenericBaseType();
//Assert
sut.Should().Be(expected);
}
[Test]
[TestCase("AirportLocation", "Location")]
[TestCase("Event", "PlanItem")]
[TestCase("EventLocation", "Location")]
[TestCase("PublicTransportation", "PlanItem")]
[TestCase("Flight", "PublicTransportation")]
public void Class_base_type_test(string name, string expected)
{
//Arrange
var ct = GetClassTemplateSample(name);
//Act
var sut = ct.BaseType.ToClassTemplate(_classList);
//Assert
sut?.Name.Should().BeEquivalentTo(expected);
}
}