StatePrinter icon indicating copy to clipboard operation
StatePrinter copied to clipboard

Automating unit testing and ToString() coding

Results 20 StatePrinter issues
Sort by recently updated
recently updated
newest added

The current method used for avoiding cycles and duplicate printing, using index-based references, is not serving us well in the use case of StatePrinter combined with [ApprovalTests](https://github.com/approvals/ApprovalTests.Net) as a way...

enhancement

This PR implements #18. We are using StatePrinter with [ApprovalTests](https://github.com/approvals/ApprovalTests.Net) for characterization tests that we run on our data model. Ordering of items sometimes changes in this model, but we...

Will it be possible to create a new package targetting netstandard? I have created a temporary package / project file and nuget targetting netstandard 2.0. Probably best to have a...

I noticed, that `Enum.GetName(Type, object)` gives empty string for values that are not defined in the enum. Those can exist in C#. The ways to create them are the `Enum.Parse`...

enhancement
Help wanted

If `PublicFieldsAndPropertiesHarvester` is used, and a property access attempt throws an exception, the exception bubbles up to the top and cannot be handled, as in the code below. It would...

enhancement
Help wanted

This would be so useful to me... if only it could output valid C# code! Currently, I have to print the object and then mess around with it to get...

enhancement
Help wanted

be able to specify -column ordering -sorting of rows by one or more columns

enhancement
Help wanted

Like linq select

enhancement
Help wanted

curly style output of ``` public class TagsCollection { public Dictionary Pages = new Dictionary(); public void Add(string tag, string url) { List urls; if (!Pages.TryGetValue(tag, out urls)) Pages.Add(tag, urls...

bug