Skip to content

Instantly share code, notes, and snippets.

@pmatos2000
Created June 11, 2022 22:38
Show Gist options
  • Save pmatos2000/7122cf67e03ee522521c8122cb719e2c to your computer and use it in GitHub Desktop.
Save pmatos2000/7122cf67e03ee522521c8122cb719e2c 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()
{
/// ...
}
[TestMethod]
public void EhPares_ElementosMistos()
{
var elementos = new int[] { 1, 2, 3, 4, };
var resultado = Util.EhPares(elementos);
Assert.IsFalse(resultado);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment