Skip to content

Commit bd6f3f7

Browse files
committed
Remove Merchant.cs
1 parent 292dc38 commit bd6f3f7

File tree

3 files changed

+3
-50
lines changed

3 files changed

+3
-50
lines changed

Authorize.NET/AuthorizeNET.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
<Reference Include="System.Security" />
5656
</ItemGroup>
5757
<ItemGroup>
58-
<Compile Include="*.cs" />
58+
<Compile Include="Environment.cs" />
59+
<Compile Include="MarketType.cs" />
60+
<Compile Include="TestFriends.cs" />
5961
<Compile Include="Api\Contracts\V1\*.cs" />
6062
<Compile Include="Api\Controllers\ARBCancelSubscriptionController.cs" />
6163
<Compile Include="Api\Controllers\ARBCreateSubscriptionController.cs" />

Authorize.NET/Merchant.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

AuthorizeNETtest/Api/Controllers/Test/ApiCoreTestBase.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public abstract class ApiCoreTestBase {
2727
protected static AuthorizeNet.Environment TestEnvironment = AuthorizeNet.Environment.SANDBOX;
2828
//protected static AuthorizeNet.Environment TestEnvironment = AuthorizeNet.Environment.HOSTED_VM;
2929

30-
static Merchant _merchant ;
3130
static readonly String ApiLoginIdKey ;
3231
static readonly String TransactionKey ;
3332
static String _md5HashKey ;
@@ -91,15 +90,6 @@ static ApiCoreTestBase() {
9190
"LoginId and/or TransactionKey have not been set. Merchant keys are required.");
9291
}
9392

94-
if (null != ApiLoginIdKey && null != TransactionKey)
95-
{
96-
_merchant = Merchant.CreateMerchant(TestEnvironment, ApiLoginIdKey, TransactionKey);
97-
}
98-
if (null == _merchant)
99-
{
100-
Assert.Fail("Merchant logins have been set");
101-
}
102-
10393
ErrorMessages = new Dictionary<string, string>();
10494
}
10595

0 commit comments

Comments
 (0)