You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <gtest/gtest.h> |
|
#include "devilution.h" |
|
|
|
TEST(Codec, codec_get_encoded_len) { |
|
EXPECT_EQ(dvl::codec_get_encoded_len(50), 72); |
|
} |
|
|
|
TEST(Codec, codec_get_encoded_len_eq) { |
|
EXPECT_EQ(dvl::codec_get_encoded_len(128), 136); |
|
}
|
|
|