removing dependancy of a private function inside a public function using Rhino Mocks
- by L G
Hi All,
I am new to mocking, and have started with Rhino Mocks. My scenario is like this..in my class library i have a public function and inside it i have a private function call, which gets output from a service.I want to remove the private function dependency.
public class Employee
{
public virtual string GetFullName(string…