Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a TestUtility to provide dynamic data from Csv Resource #7

Open
mwwhited opened this issue Dec 3, 2020 · 0 comments
Open

Create a TestUtility to provide dynamic data from Csv Resource #7

mwwhited opened this issue Dec 3, 2020 · 0 comments

Comments

@mwwhited
Copy link
Owner

mwwhited commented Dec 3, 2020

    private static IEnumerable<object[]> CalcInvoiceChargesTestDataSet()
    {
        using var stream = typeof(TestModel).GetResourceStream("TestData.csv");
        using var reader = new StreamReader(stream);
        using var csv = new CsvReader(reader, CultureInfo.InvariantCulture);
        csv.Configuration.AllowComments = true;
        foreach (var record in csv.GetRecords<>())
            yield return new[] { record }; //TODO: make this an object array or at least configurable is some fashion to improve test data source 
    }

    [DataTestMethod, TestCategory(TestCategories.Unit)]
    [DynamicData(
        nameof(TestModel),
        DynamicDataSourceType.Method
        //DynamicDataDisplayName = nameof(TestModel.TestCase)
        )]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant