AppHarbor.Test.MockedApiTests.Get_Null_For_Non_Existing_ConfigurationVariable C# (CSharp) Method

Get_Null_For_Non_Existing_ConfigurationVariable() private method

private Get_Null_For_Non_Existing_ConfigurationVariable ( ) : void
return void
		public void Get_Null_For_Non_Existing_ConfigurationVariable()
		{
			var item = Api.GetConfigurationVariable(ApplicationSlug, "6");
			Assert.IsNull(item);
		}
MockedApiTests