Files
fluxengine/tests/bitaccumulator.cc
2024-10-01 20:36:53 +02:00

18 lines
282 B
C++

#include "lib/core/globals.h"
#include "lib/core/bytes.h"
#include <assert.h>
int main(int argc, const char* argv[])
{
Bytes bytes;
ByteWriter bw(bytes);
BitWriter bitw(bw);
bitw.push(0x1e, 5);
bitw.flush();
assert(bytes == Bytes{0x1e});
return 0;
}