You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.That(()=>newTableServiceClient(null,newTableSharedKeyCredential(_accountName,string.Empty)),Throws.InstanceOf<ArgumentNullException>(),"The constructor should validate the url.");
44
-
45
-
Assert.That(()=>newTableServiceClient(_url,credential:default(TableSharedKeyCredential)),Throws.InstanceOf<ArgumentNullException>(),"The constructor should validate the TablesSharedKeyCredential.");
46
-
47
-
Assert.That(()=>newTableServiceClient(_urlHttp,newAzureSasCredential("sig")),Throws.InstanceOf<ArgumentException>(),"The constructor should validate the Uri is https when using a SAS token.");
48
-
49
-
Assert.That(()=>newTableServiceClient(_url,default(AzureSasCredential)),Throws.InstanceOf<ArgumentNullException>(),"The constructor should not accept a null credential");
50
-
51
-
Assert.That(()=>newTableServiceClient(_url,newTableSharedKeyCredential(_accountName,string.Empty)),Throws.Nothing,"The constructor should accept valid arguments.");
52
-
53
-
Assert.That(()=>newTableServiceClient(_urlHttp,newTableSharedKeyCredential(_accountName,string.Empty)),Throws.Nothing,"The constructor should accept an http url.");
0 commit comments