mirror of https://github.com/abpframework/abp.git
30 changed files with 52 additions and 42 deletions
@ -1,6 +1,6 @@ |
|||
using System.Threading; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
namespace Volo.Abp.BlobStoring.Containers |
|||
{ |
|||
public static class BlobContainerFactoryExtensions |
|||
{ |
|||
@ -1,6 +1,6 @@ |
|||
using System.Threading; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
namespace Volo.Abp.BlobStoring.Containers |
|||
{ |
|||
public interface IBlobContainerFactory |
|||
{ |
|||
@ -1,12 +1,11 @@ |
|||
using System.Threading.Tasks; |
|||
using NSubstitute; |
|||
using Shouldly; |
|||
using Volo.Abp.BlobStoring.Fakes; |
|||
using Volo.Abp.BlobStoring.Containers.TestObjects; |
|||
using Volo.Abp.BlobStoring.Providers; |
|||
using Volo.Abp.BlobStoring.TestObjects; |
|||
using Volo.Abp.BlobStoring.Providers.Fakes; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
namespace Volo.Abp.BlobStoring.Containers |
|||
{ |
|||
public class BlobContainerFactory_Tests : AbpBlobStoringTestBase |
|||
{ |
|||
@ -1,8 +1,8 @@ |
|||
using Shouldly; |
|||
using Volo.Abp.BlobStoring.TestObjects; |
|||
using Volo.Abp.BlobStoring.Containers.TestObjects; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
namespace Volo.Abp.BlobStoring.Containers |
|||
{ |
|||
public class BlobContainerNameAttribute_Tests |
|||
{ |
|||
@ -1,8 +1,8 @@ |
|||
using Shouldly; |
|||
using Volo.Abp.BlobStoring.TestObjects; |
|||
using Volo.Abp.BlobStoring.Containers.TestObjects; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
namespace Volo.Abp.BlobStoring.Containers |
|||
{ |
|||
public class BlobContainer_Injection_Tests : AbpBlobStoringTestBase |
|||
{ |
|||
@ -0,0 +1,7 @@ |
|||
namespace Volo.Abp.BlobStoring.Containers.TestObjects |
|||
{ |
|||
public class TestContainer1 |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -1,4 +1,4 @@ |
|||
namespace Volo.Abp.BlobStoring.TestObjects |
|||
namespace Volo.Abp.BlobStoring.Containers.TestObjects |
|||
{ |
|||
[BlobContainerName("Test2")] |
|||
public class TestContainer2 |
|||
@ -0,0 +1,7 @@ |
|||
namespace Volo.Abp.BlobStoring.Containers.TestObjects |
|||
{ |
|||
public class TestContainer3 |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -1,8 +1,7 @@ |
|||
using System.IO; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.BlobStoring.Providers; |
|||
|
|||
namespace Volo.Abp.BlobStoring.Fakes |
|||
namespace Volo.Abp.BlobStoring.Providers.Fakes |
|||
{ |
|||
public class FakeBlobProvider1 : IBlobProvider |
|||
{ |
|||
@ -1,8 +1,7 @@ |
|||
using System.IO; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.BlobStoring.Providers; |
|||
|
|||
namespace Volo.Abp.BlobStoring.Fakes |
|||
namespace Volo.Abp.BlobStoring.Providers.Fakes |
|||
{ |
|||
public class FakeBlobProvider2 : IBlobProvider |
|||
{ |
|||
@ -1,9 +1,8 @@ |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using Volo.Abp.BlobStoring.Providers; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.BlobStoring.Fakes |
|||
namespace Volo.Abp.BlobStoring.Providers.Fakes |
|||
{ |
|||
public class FakeProviders : ISingletonDependency |
|||
{ |
|||
@ -1,7 +0,0 @@ |
|||
namespace Volo.Abp.BlobStoring.TestObjects |
|||
{ |
|||
public class TestContainer1 |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -1,7 +0,0 @@ |
|||
namespace Volo.Abp.BlobStoring.TestObjects |
|||
{ |
|||
public class TestContainer3 |
|||
{ |
|||
|
|||
} |
|||
} |
|||
Loading…
Reference in new issue