Skip to content

Instantly share code, notes, and snippets.

@santanaguy
Last active February 29, 2020 01:52
void Main()
{
//This is how I run the test and get the result
Console.WriteLine(TrueShouldBeTrue());
}
//This is the test
public bool TrueShouldBeTrue(){
return true == true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment