public void ReadFingerprintIdByHashBinAndHashTableMinHashFalseTest()
 {
     DaoGateway target = new DaoGateway(connectionstring);
     long[] hashBins = new long[] { 1, 2, 3, 4, 5, 6 };
     int[] hashTables = new[] { 100, 101, 102, 103, 104, 105 };
     Dictionary<int, List<HashBinMinHash>> actual = target.ReadFingerprintsByHashBucketAndHashTableLSH(
         hashBins, hashTables);
     Assert.IsNull(actual);
 }