Exemple #1
0
 public static async Task <Unit> ExportAsset(AssetExportHandler systemUnderTest, string application, string name, string path, string aliasCredentials = "aut-developer")
 {
     return(await systemUnderTest.Handle(new AssetExportRequest()
     {
         AliasCredentials = aliasCredentials,
         Application = application,
         Name = name,
         Path = path,
     }, CancellationToken.None));
 }