Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pmatos2000/0d97884f4f6ebdc67b39859c687fecf5 to your computer and use it in GitHub Desktop.
Save pmatos2000/0d97884f4f6ebdc67b39859c687fecf5 to your computer and use it in GitHub Desktop.
using MeuProjeto;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace MeusTestes
{
[TestClass]
public class UtilTestes
{
[TestMethod]
public void EhPares_TodosElementosPares()
{
var elementos = new int[] { 2, 4, 6, 8, 10 };
var resultado = Util.EhPares(elementos);
Assert.IsTrue(resultado);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment