rss-cli/src/tests.hpp

18 lines
289 B
C++
Raw Normal View History

2021-07-24 01:17:22 +00:00
///////////////////////////////////////////////////////////////////////////////
// Tyler Perkins
// 7-23-21
// tests definition
//
#pragma once
#include <cassert>
#include <string>
#include <iostream>
#include "rss.hpp"
namespace rss_utils {
void testRSS();
2021-07-25 17:40:52 +00:00
void testItems();
2021-07-24 01:17:22 +00:00
}