Example #1
0
        public void TestRequestConsumerKeyWithInvalidKeyReturnStringEmpty()
        {
            // ARRANGE
            const string applicationKey    = "applicationKey";
            const string applicationSecret = "applicationSecret";
            var          ovhApi            = new OvhApi(applicationKey, applicationSecret);

            // ACT
            string requestConsumerKey = ovhApi.RequestConsumerKey();

            // ASSERT
            Assert.AreEqual(requestConsumerKey, string.Empty, "requestConsumerKey is not empty");
        }