mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 11:08:34 +08:00
7 lines
146 B
C++
7 lines
146 B
C++
#include "tkc/crc.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(crc, crc32_file) {
|
|
ASSERT_EQ(tk_crc32_file("tests/testdata/test.png", 1024), 1567897941);
|
|
}
|