mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 03:28:53 +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);
|
||
|
}
|