public void ProfileRepositoryShouldContainOneProfile(string accountName, string profileName)
 {
     ObjectFactory.GetInstance <PluginContextMock>().AccountName = accountName;
     ProfileCollection.ToList().Any(x => x.Name == profileName).
     Should(Be.True, string.Format("Cannot find profile {0} in repository", profileName));
 }