public void HadoopAnonymousAuthenticationConstructorTest()
        {
            HadoopAnonymousAuthentication authentication = new HadoopAnonymousAuthentication();

            authentication.Request.ShouldBe(String.Empty);
            authentication.AutenticationType.ShouldBe(StorageAuthenticationType.Anonymous);
        }
Esempio n. 2
0
        public void HadoopAnonymousAuthenticationConstructorTest()
        {
            HadoopAnonymousAuthentication authentication = new HadoopAnonymousAuthentication();

            Assert.AreEqual(String.Empty, authentication.Request);
            Assert.AreEqual(FileSystemAuthenticationType.Anonymous, authentication.AutenticationType);
        }