public async Task Call_MethodFetchAsset_Returns_Object()
        {
            var asset = await assetService.FetchAsset(Guid.NewGuid());

            Assert.IsNotNull(asset);
            Assert.IsNotNull(asset.AssetId);
        }