I have 2 string arrays that appear to be the same when I inspect them. Am I using the wrong Assert method?
//Arrange
string[] expected = new[] { "Widget A", "Widget B" };
string[] actual;
//Act
actual = api.GetIncidents(credentials);
//Assert
Assert.AreEqual(expected, actual);
Assert.AreEqual failed. Expected:<System.String[]>. Actual:<System.String[]>.