@@ -42,7 +42,13 @@ SCENARIO("Sequences of bits can be converted to/from sequences of pits/lands") {
4242 std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b11101010 , 0b10110011 ),
4343 std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::PIT , 0b00110011 , 0b11011101 ),
4444 std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::PIT , 0b00100100 , 0b11000111 ),
45- std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b00010000 , 0b00011111 )
45+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b00010000 , 0b00011111 ),
46+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b11001101 , 0b10001001 ),
47+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::PIT , 0b11110111 , 0b01011010 ),
48+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b10010010 , 0b11100011 ),
49+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::PIT , 0b00010010 , 0b11100011 ),
50+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::PIT , 0b10000000 , 0b00000000 ),
51+ std::tuple<Pit, std::uint8_t , std::uint8_t >(Pit::LAND, 0b00000000 , 0b00000000 )
4652 );
4753 // extract the bit patterns for use in the test case
4854 ChannelBitArray<LENGTH> bits;
0 commit comments