Ejemplo n.º 1
0
 public void TestIsBinPower()
 {
     for (int i = 0; i < 64; i++)
     {
         long n = BinAuth.GetBinPower(i);
         BinAuth.IsBinPower(n).Should().BeTrue();
     }
 }