-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathConstants.cs
21 lines (21 loc) · 1.11 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace CloudinaryDotNet.Tests
{
public abstract class TestConstants
{
public const string CloudName = "testcloud";
public const string DefaultApiKey = "1234";
public const string DefaultApiSecret = "abcd";
public const string DefaultRootPath = "http://res.cloudinary.com/testcloud/";
public const string DefaultVideoUpPath = DefaultRootPath + "video/upload/";
public const string DefaultImageUpPath = DefaultRootPath + "image/upload/";
public const string DefaultImageFetchPath = DefaultRootPath + "image/fetch/";
public const string TestPublicId = "test_id";
public const string TestPublicId2 = "test_id2";
public const string TestPublicId3 = "test_id3";
public const string TestAssetId = "4af5a0d1d4047808528b5425d166c101";
public const string TestAssetId2 = "4af5a0d1d4047808528b5425d166c102";
public const string TestAssetId3 = "4af5a0d1d4047808528b5425d166c103";
public const string TestTag = "test_tag";
public const string TestRemoteImg = "http://cloudinary.com/images/old_logo.png";
}
}