We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b1038d commit 17e5fa7Copy full SHA for 17e5fa7
source/Lambda.Tests/Cloud/LambdaCloudServiceTests.cs
@@ -0,0 +1,30 @@
1
+using System;
2
+
3
+using Microsoft;
4
+using Microsoft.VisualStudio;
5
+using Microsoft.VisualStudio.TestTools;
6
+using Microsoft.VisualStudio.TestTools.UnitTesting;
7
8
+namespace Lambda.Cloud
9
+{
10
+ /// <summary>
11
+ ///
12
+ /// </summary>
13
+ [TestClass]
14
+ public sealed partial class LambdaCloudServiceTests
15
+ {
16
+ private ILambdaCloudService lambdaCloud;
17
18
19
20
21
+ [TestInitialize]
22
+ public void Initialize()
23
24
+ this.lambdaCloud =
25
+ new LambdaCloudService(
26
+ Environment.GetEnvironmentVariable(
27
+ "LAMBDA_API_KEY"));
28
+ }
29
30
+}
0 commit comments