Bogus
xUnit
Our great sponsors
Bogus | xUnit | |
---|---|---|
17 | 25 | |
6,689 | 3,589 | |
- | 1.1% | |
4.6 | 8.6 | |
5 days ago | 6 days ago | |
C# | C# | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Bogus
-
Using EF Core and Bogus
Going forward, the secret to knowing were to find data is to read Bogus information in the readme file which goes into depth were to find paths to generate data. This is very important as you can clash with their classes e.g. you create a Person class and guess what, Bogus has a Person class. This is were knowing how to work with using statements and using statements with aliasing.
-
Learn DateOnly & TimeOnly
Code samples for Json.net which as of version 13.0.2 now supports DateOnly and TimeOnly. Three code samples are used to show interactions with Bogus and Microsoft.Data.SqlClient which is most likely used to work with json data.
-
Is there a tool that could be used to generate fake unit test cases automatically for code coverage? (read description before downvoting)
In terms of generating test cases, I've come across this before: https://github.com/bchavez/Bogus
-
Help me find this library
I used a .Net library a few years ago to create random text for a bunch of fake email bodies. It wasn't "lorem ipsum" type text, but full sentences and paragraphs. It would produce text that sounded like it came from a bullshit consulting handbook, or an intentionally obtuse technical description....things like, "Though vague in purpose the participant reality substituted reactional nature while in strongest thought vertices coincided with ...." and so on. I think it was somehow tied to Bogus but I can't seem to find it anywhere. Anyone able to help me out here?
-
Some useful Libraries for .NET projects
Bogus Github Nuget: Install-Package Bogus -Version 33.1.1
-
My first NuGet package: Fluent Random Picker
Seems like a fun package but I prefer Bogus
-
String similarity search and fast LIKE operator using pg_trgm
I inserted 10M rows of fake data generated by Bogus into the table. You can download the dump here.
-
Comparison between TypeORM and Entity Framework with LINQ
What is Bogus and Faker? They are libraries randomly to create a variety of dummy data such as human name, address, date and product/company name etc. = reduce our boring time of generating dummy records and have testing cases with multiple dummy values instead of our static ones.
xUnit
-
Creating Your Own Custom Attributes in C# and Retrieving Their Values
I was trying to think of an example of where C# attributes might be used in every day life and then it dawned on me: unit testing! If you have ever used a unit test framework such as MSTest, NUnit or xUnit, you will have used attributes in C# to define the classes and methods that you would like the test framework to execute. This is just one example of how you can use attributes to assign metadata to elements of your code.
-
Generating Code Coverage Metrics for .NET Framework Applications
Because I struggled with the initial tests written using MSTest, I converted all the tests to xUnit – some of this was out of sheer comfort with xUnit over MSTest, but also because its OSS product under the .NET Foundation – and I like supporting those.
-
GoDotTest: C# Testing for Godot with debugging in VSCode and command-line support
I didn't want to create "yet another test runner," but I couldn't get any of the existing ones to do everything I needed. It's fairly well known that you can't run or debug xunit tests in a Godot game unless you're using Rider, and since I'm a die-hard VSCode user, I didn't want to make the switch. XUnit also runs tests in parallel by default, which isn't usually what I want in a game-like environment, so it just felt like a poor fit overall.
-
Reduce your tests cognitive complexity with AutoFixture
The setup here is really minimal, just create a new test project. I'll be using xUnit but NUnit should be fine too.
-
Implementing a Clean Architecture in ASP.NET Core 6
xUnit
- Getting Started with Unit Testing in Visual Studio 2022 - nUnit
-
How to run async method inside a class method
If you're using xUnit for your tests, you can implement the IAsyncLifetime interface it helpfully provides for you.
-
Clean Architecture Solution Template
The projects are all .NET 6 applications with nullable references types and implicit usings enabled. The unit testing projects use Xunit out of the box. There are also support files such as .gitignore, .editorconfig, etc.
-
Writing tests for CLI tool
The testing framework that I chose is XUnit. The first reason is that it is trendy compared to another test framework such as NUnits. I created test methods stub from the existing code by Create Unit Tests command. To use it with Xunit, I have to implement the XUnit.net.TestGenerator extension to my project.
-
Announcing .NET 6 — The Fastest .NET Yet
Tests is a xunit project to unit test your domain logic.
What are some alternatives?
AutoFixture - AutoFixture is an open source library for .NET designed to minimize the 'Arrange' phase of your unit tests in order to maximize maintainability. Its primary goal is to allow developers to focus on what is being tested rather than how to setup the test scenario, by making it easier to create object graphs containing test data.
faker-cs - C# port of the Ruby Faker gem (http://faker.rubyforge.org/)
Moq - Repo for managing Moq 4.x
NBuilder - Rapid generation of test objects in .NET
NUnit - NUnit 3 Framework
Shouldly - Should testing for .NET—the way assertions should be!
Fluent Assertions - A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or BDD-style unit tests. Targets .NET Framework 4.7, as well as .NET Core 2.1, .NET Core 3.0, .NET 6, .NET Standard 2.0 and 2.1. Supports the unit test frameworks MSTest2, NUnit3, XUnit2, MSpec, and NSpec3.
MSTest - MSTest framework and adapter
GenFu - GenFu is a library you can use to generate realistic test data. It is composed of several property fillers that can populate commonly named properties through reflection using an internal database of values or randomly created data. You can override any of the fillers, give GenFu hints on how to fill them.
NSubstitute - A friendly substitute for .NET mocking libraries.
FakeItEasy - The easy mocking library for .NET