Beispiel #1
0
        public void GetAccessKeySecret()
        {
            Credential        legacyCredential = new Credential("foo", "bar");
            LegacyCredentials instance         = new LegacyCredentials(legacyCredential);

            Assert.Equal("bar", instance.GetAccessKeySecret());
        }
        public void Get()
        {
            var legacyCredential = new Credential("foo", "bar");
            var instance         = new LegacyCredentials(legacyCredential);

            Assert.Equal("foo", instance.GetAccessKeyId());
        }
        public void Get()
        {
            Core.Auth.Credential legacyCredential = new Core.Auth.Credential("foo", "bar");
            LegacyCredentials    instance         = new LegacyCredentials(legacyCredential);

            Assert.Equal("foo", instance.GetAccessKeyId());
        }
Beispiel #4
0
        public void Instance()
        {
            Credential        legacyCredential = new Credential("foo", "bar");
            LegacyCredentials instance         = new LegacyCredentials(legacyCredential);

            Assert.IsType <LegacyCredentials>(instance);
            Assert.NotNull(instance);
        }
Beispiel #5
0
 public void Instance()
 {
     Credential        legacyCredential = new Credential("foo", "bar");
     LegacyCredentials instance         = new LegacyCredentials(legacyCredential);
 }