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 "codec.h"
|
|
|
|
|
|
|
|
|
|
using namespace devilution;
|
|
|
|
|
|
|
|
|
|
TEST(Codec, codec_get_encoded_len)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_EQ(codec_get_encoded_len(50), 72);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(Codec, codec_get_encoded_len_eq)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_EQ(codec_get_encoded_len(128), 136);
|
|
|
|
|
}
|