Skip to content

Commit

Permalink
move test.cs to ./src/
Browse files Browse the repository at this point in the history
  • Loading branch information
NaroZeol committed May 21, 2024
1 parent f6cb771 commit 96a2195
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test.cs → src/test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ private static bool TestHexConversion()
return true;
}

static void Main(string[] args)
{
if (!TestDecConversion() || !TestBinConversion() || !TestHexConversion())
{
Console.WriteLine("Test failed");
}
else
{
Console.WriteLine("Test passed");
}
}
// static void Main(string[] args)
// {
// if (!TestDecConversion() || !TestBinConversion() || !TestHexConversion())
// {
// Console.WriteLine("Test failed");
// }
// else
// {
// Console.WriteLine("Test passed");
// }
// }
}
}

0 comments on commit 96a2195

Please sign in to comment.