forked from moh-hassan/odata2poco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommonTestData.cs
37 lines (27 loc) · 1.04 KB
/
CommonTestData.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
using System;
using System.Collections;
using NUnit.Framework;
public static class TestSample
{
public static object[] UrlCases =
{
//url ,version ,noOfClasses
new object[] {"http://services.odata.org/V4/Northwind/Northwind.svc", "4.0", 26},
new object[] {"http://services.odata.org/V3/Northwind/Northwind.svc", "1.0", 26}
//new object[] {" http://services.odata.org/V4/TripPinServiceRW", "4.0", 14}
};
public static object[] FileCases =
{
new object[] {@"data\northwindV4.xml","4.0" ,11 },
new object[] {@"data\northwindV3.xml","1.0" ,11 }
// new object[] {@"data\trippinV4.xml","4.0" ,14 }
};
public static object[] UrlLocalCases =
{
new object[] {"http://asd-pc/odata/api/northwind", "4.0", 26}
};
public static object[] UrlLocalSecuredCases =
{
new object[] {"http://asd-pc/odata2/api/northwind", "4.0", 26}
};
}