TestModelHelper 1.0.0
See the version list below for details.
dotnet add package TestModelHelper --version 1.0.0
NuGet\Install-Package TestModelHelper -Version 1.0.0
<PackageReference Include="TestModelHelper" Version="1.0.0" />
<PackageVersion Include="TestModelHelper" Version="1.0.0" />
<PackageReference Include="TestModelHelper" />
paket add TestModelHelper --version 1.0.0
#r "nuget: TestModelHelper, 1.0.0"
#:package TestModelHelper@1.0.0
#addin nuget:?package=TestModelHelper&version=1.0.0
#tool nuget:?package=TestModelHelper&version=1.0.0
Test Model Helper
Test Model Helper is a C# library for generating test data for unit/functional/integration tests
Installing
Install-Package TestModelHelper
Or install the TestModelHelper in Visual Studio Nuget Package Manager
Using the Library
Examples shown using MSTest, but other test frameworks should work fine
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
[TestClass]
public class ExampleTests
{
public TestModelHelper<Person> _testModelHelper;
[TestInitialize]
public void Setup()
{
_testModelHelper = new TestModelHelper<Person>(new Person
{
FirstName = "Charlie",
LastName = "Awesomeguy"
});
}
[TestMethod]
public void Test1()
{
var validData = _testModelHelper.CreateValidTest(); // Creates copy of original person
var invalidData = _testModelHelper.CreateInvalidTest(r => r.FirstName = "Someone"); // Created modified copy of original person
Assert.AreEqual("Charlie", validData.FirstName); // Passes
Assert.AreEqual("Charlie", invalidData.FirstName); // Fails
}
}
Available Methods
CreateValidTest
Creates a copy of your original test model and returns it. Modifications to this test model will not effect the original
var validTestData = _testModelHelper.CreateValidTest();
CreateInvalidTest
Creates a copy of your original test model, then runs the linq expression on it. This is meant to make invalid or modified test data for specific edge cases in applications
var testData = _testModelHelper.CrateInvalidTest(r => r.FirstName = "Someone");
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.