public void HadoopAnonymousAuthenticationConstructorTest() { HadoopAnonymousAuthentication authentication = new HadoopAnonymousAuthentication(); authentication.Request.ShouldBe(String.Empty); authentication.AutenticationType.ShouldBe(StorageAuthenticationType.Anonymous); }
public void HadoopAnonymousAuthenticationConstructorTest() { HadoopAnonymousAuthentication authentication = new HadoopAnonymousAuthentication(); Assert.AreEqual(String.Empty, authentication.Request); Assert.AreEqual(FileSystemAuthenticationType.Anonymous, authentication.AutenticationType); }