sentryone / unittestgenerator

A unit test generation extension for Visual Studio
Apache License 2.0
25 stars 5 forks source link

Generation of multiple parameters with the same type defaults on second parameter #17

Closed mattwhitfield closed 4 years ago

mattwhitfield commented 4 years ago

This signature:

public AppLicenceFeatureValueDetails(int id, int licenceId, int featureId)

Yields this

new AppLicenceFeatureValueDetails(839812003, default(int), default(int)

The second and third parameters should also get their values from the value provider.