Shady nagy/net6 (#614)
* udated to .net6 * used the .net6 version RC2 * added editconfig. * App core new Scoped Namespaces style. * BlazorAdmin new Scoped Namespaces style. * Blazor Shared new Scoped Namespaces style. * Infra new Scoped Namespaces style. * public api new Scoped Namespaces style. * web new Scoped Namespaces style. * FunctionalTests new Scoped Namespaces style. * Integrational tests new Scoped Namespaces style. * unit tests new Scoped Namespaces style. * update github action. * update github action. * change the global.
This commit is contained in:
@@ -1,40 +1,39 @@
|
||||
using Microsoft.eShopWeb.ApplicationCore.Entities.BasketAggregate;
|
||||
using Moq;
|
||||
|
||||
namespace Microsoft.eShopWeb.UnitTests.Builders
|
||||
namespace Microsoft.eShopWeb.UnitTests.Builders;
|
||||
|
||||
public class BasketBuilder
|
||||
{
|
||||
public class BasketBuilder
|
||||
private Basket _basket;
|
||||
public string BasketBuyerId => "testbuyerId@test.com";
|
||||
|
||||
public int BasketId => 1;
|
||||
|
||||
public BasketBuilder()
|
||||
{
|
||||
private Basket _basket;
|
||||
public string BasketBuyerId => "testbuyerId@test.com";
|
||||
_basket = WithNoItems();
|
||||
}
|
||||
|
||||
public int BasketId => 1;
|
||||
public Basket Build()
|
||||
{
|
||||
return _basket;
|
||||
}
|
||||
|
||||
public BasketBuilder()
|
||||
{
|
||||
_basket = WithNoItems();
|
||||
}
|
||||
public Basket WithNoItems()
|
||||
{
|
||||
var basketMock = new Mock<Basket>(BasketBuyerId);
|
||||
basketMock.SetupGet(s => s.Id).Returns(BasketId);
|
||||
|
||||
public Basket Build()
|
||||
{
|
||||
return _basket;
|
||||
}
|
||||
_basket = basketMock.Object;
|
||||
return _basket;
|
||||
}
|
||||
|
||||
public Basket WithNoItems()
|
||||
{
|
||||
var basketMock = new Mock<Basket>(BasketBuyerId);
|
||||
basketMock.SetupGet(s => s.Id).Returns(BasketId);
|
||||
|
||||
_basket = basketMock.Object;
|
||||
return _basket;
|
||||
}
|
||||
|
||||
public Basket WithOneBasketItem()
|
||||
{
|
||||
var basketMock = new Mock<Basket>(BasketBuyerId);
|
||||
_basket = basketMock.Object;
|
||||
_basket.AddItem(2, 3.40m, 4);
|
||||
return _basket;
|
||||
}
|
||||
public Basket WithOneBasketItem()
|
||||
{
|
||||
var basketMock = new Mock<Basket>(BasketBuyerId);
|
||||
_basket = basketMock.Object;
|
||||
_basket.AddItem(2, 3.40m, 4);
|
||||
return _basket;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user