Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

695
Views
Can Autofixture.Create<int> return a negative value?

Actually, the following method always returns a positive integer:

var fixture = new Fixture();
var someInt = fixture.Create<int>();

Is it possible that one day, the feature evolves and begins to return a negative integer? Or is there an official reason it actually returns an always positive integer
If not, is there some documentation hidden somewhere telling it?

To keep on using autofixture, I'd like to know if some changes are foreseen.

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

The author of Autofixture discusses this on his blog. This post specifies that the current implementation will always return positive numbers since they are deemed "safer" in general, so I don't think this will change in the near future.

The whole point of AutoFixture is to generate anonymous test data. You are asking for an integer which can be a negative number. To be 100% safe, I wouldn't rely on the implicit assumption that all future implementations only return positive numbers. You can make this more explicit by providing a custom SpecimenBuilder:

fixture.Customizations.Add(new PositiveIntegerBuilder());

More information about custom specimen builders can be found here.

over 4 years ago · Santiago Trujillo Report

0

As user prgmtc points out, one option is through a custom ISpecimenBuilder.

Another option is to supply a custom range, by using the built-in RandomNumericSequenceGenerator class, as shown below:

[Fact]
public void FixtureCreatesNegativeNumbers()
{
    var fixture = new Fixture();
    fixture.Customizations.Add(
        new RandomNumericSequenceGenerator(-900, -100));

    var i = fixture.Create<int>();
    // Prints -> -711
    var l = fixture.Create<long>();
    // Prints -> 618
    var f = fixture.Create<float>();
    // Prints -> -78.0
}
over 4 years ago · Santiago Trujillo Report

0

var i = fixture.Create<uint>();

Only if the original code being tested expected a uint type parameter.

Wouldvar i = Math.Abs(fixture.Create<int>()) work for you

To answer the original question

  • int by defintion can be negative.
  • fixture.Create, by definition should not return negative int.

I would assume that the authors of AutoFixture will not change something that crucial so lightly. I would use fixture.Create<int>

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!