I am writing unit for a class which looks like following using nunit and Rhino mock.
Class MyClass
{
  private void M()
  {
    N("Hi");
  }
  private void N(string text)
  {
    ........ do something
  }
}
For the unit test for method M I want to check if method N was called with argument "Hi". How do I do it?