Bogus
Moq
Our great sponsors
Bogus | Moq | |
---|---|---|
17 | 24 | |
6,689 | 5,013 | |
- | 1.0% | |
4.6 | 8.2 | |
5 days ago | 23 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.
Moq
-
Usefully links for DotNet Backend Developers
MOQ https://github.com/moq/moq4
-
I need a C# crash course for experienced developers
Moq
-
A Tale of 2 Codebases (Part 2 of 4): Testability
Both projects use similar testing infrastructure. I write unit tests in C# using XUnit.net. I frequently use mock objects in testing, and MOQ is my tool of choice. I utilize continuous testing and coverage analysis through Rider. I do not have specific objectives for code coverage. When writing complicated algorithms, I frequently shoot for 100% coverage of the algorithm. I test simple properties inconsistently, and frequently do not test guard clauses.
-
Moq vs NSubstitute: syntax cheat sheet
🔗 Moq documentation | GitHub
-
What's your go-to unit testing tool?
But the reality is that I don't really write my tests with it. Toss on the MSTest attributes as needed of course. But all the testing code itself is FluentAssertions with a bit of Moq. (Though I find rarely need to use Moq/mocking anymore -- scandalous, I know.)
-
How do you deal with faking deeply-nested objects when testing?
This looks like the kind of thing Moq could handle with LINQ to Mocks.
-
A better way to verify Mocks (XUnit, Moq, .NET)
Full code can be found here. More on Moq can be found here.
-
Implementing a Clean Architecture in ASP.NET Core 6
Moq
-
We need to have a talk about making life easier for newcomers to .NET
> edit: one more qualm, the Mockito equivalent for C#, NSubstitute, cannot mock a concrete class, only an interface.
I've never heard of NSubstitute (that doesn't mean it's bad), but most places I've worked at typically use Moq (https://github.com/moq/moq4) which does support interfaces and classes.
-
Never written tests. Is there a simple CRUD project with EF Core I can learn from?
Have you tried Moq?
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.
FakeItEasy - The easy mocking library for .NET
NSubstitute - A friendly substitute for .NET mocking libraries.
faker-cs - C# port of the Ruby Faker gem (http://faker.rubyforge.org/)
NBuilder - Rapid generation of test objects in .NET
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.
AutoMoq - Auto mocking provider for Moq.
xUnit - xUnit.net is a free, open source, community-focused unit testing tool for .NET.
NUnit - NUnit 3 Framework
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.