ultimatepp/autotest/ZeroLZ4/ZeroLZ4.cpp
cxl aadf1257fe .autotest
git-svn-id: svn://ultimatepp.org/upp/trunk@10013 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-07-06 07:50:37 +00:00

13 lines
255 B
C++

#include <Core/Core.h>
#include <plugin/lz4/lz4.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
StdLogSetup(LOG_COUT|LOG_FILE);
String h = LZ4Compress(String());
h = LZ4Decompress(h);
ASSERT(h.GetCount() == 0);
LOG("=============== OK");
}