I am having a class "Example" with a property "data" which has a private setter and I would like to mock that data property
Public class Example { public string data {get; private set;}}
I would like to mock the data property using NSubstitute. Could someone help me how to do it.