Why using test coverage as a metric is stupid
Adding a useless test to increase test coverage check.
[TestMethod]
[ExpectedException(typeof(NotImplementedException))]
public void AddUsersToRolesTest()
{
Roles.AddUsersToRoles(new string[] { }, new string[] { });
}