/* This Source Code Form is subject to the terms of the Mozilla Public *License,v.2.0.IfacopyoftheMPLwasnotdistributedwiththis
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
for (uint32_t i = 0; i < std::size(expectSkipped1); i++) {
EXPECT_TRUE(iter1.ConvertOriginalToSkipped(i) == expectSkipped1[i])
<< "[4] Check mapping of original to skipped for " << i;
}
for (uint32_t i = 0; i < std::size(expectOriginal1); i++) {
EXPECT_TRUE(iter1.ConvertSkippedToOriginal(i) == expectOriginal1[i])
<< "[5] Check mapping of skipped to original for " << i;
}
for (uint32_t i = 0; i < std::size(expectSkipped2); i++) {
EXPECT_TRUE(iter2.ConvertOriginalToSkipped(i) == expectSkipped2[i])
<< "[9] Check mapping of original to skipped for " << i;
}
int32_t expectOriginal2[] = {9, 19, 29};
for (uint32_t i = 0; i < std::size(expectOriginal2); i++) {
EXPECT_TRUE(iter2.ConvertSkippedToOriginal(i) == expectOriginal2[i])
<< "[10] Check mapping of skipped to original for " << i;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.