2
AutoFixture로 이것을 쉽게 할 수 있습니까? 번호 범위를위한 자동 조정
하십시오
var myInt = fixture.Create<int>(min, max);
이 기능을 사용할 수없는 경우 여기에 누락 된 기능이없는 이유가 있습니까?
AutoFixture로 이것을 쉽게 할 수 있습니까? 번호 범위를위한 자동 조정
하십시오
var myInt = fixture.Create<int>(min, max);
이 기능을 사용할 수없는 경우 여기에 누락 된 기능이없는 이유가 있습니까?
예, 있습니다 :
이// Install-Package AutoFixture.Xunit - or -
// Install-Package AutoFixture.Xunit2
using System;
using System.ComponentModel.DataAnnotations;
using Xunit;
[Theory, AutoData]
public void ActualIsInTestRange([Range(99, 111)]int actual)
{
Assert.InRange(actual, 99, 111);
}
안녕하세요,이 새로운 질문에 대답 할 수 HTTP하십시오 //stackoverflow.com/questions/40824701/autofixture-constrained-string-parameter –
@ AdanayMartín 내가 왼쪽 [의견] (http://stackoverflow.com/questions/40824701/autofixture-constrained-string-parameter#comment68878952_40824701). –