ut.cpp 226 B

12345678910
  1. #include <library/cpp/testing/unittest/registar.h>
  2. #include <library/cpp/malloc/api/malloc.h>
  3. Y_UNIT_TEST_SUITE(MallocApi) {
  4. Y_UNIT_TEST(ToStream) {
  5. TStringStream ss;
  6. ss << NMalloc::MallocInfo();
  7. }
  8. }