Amss.Boilerplate.Tests.Business.EntityHelper.CreateTestPartner C# (CSharp) Method

CreateTestPartner() public static method

public static CreateTestPartner ( this testBase ) : PartnerEntity
testBase this
return Amss.Boilerplate.Data.PartnerEntity
        public static PartnerEntity CreateTestPartner(this BusinessIntegrationTestBase testBase)
        {
            var p = new PartnerEntity { Name = ShortStringGenerator.GetRandomValue() };

            return p;
        }