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.
|
// This file is under GNU General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "platform.h"
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#include "mime.h"
|
|
#include "message_api.h"
|
|
#include "test_util.h"
|
|
|
|
using namespace std;
|
|
|
|
class DecorateTests : public EngineTestSessionSuite {
|
|
public:
|
|
DecorateTests(string suitename, string test_home_dir);
|
|
private:
|
|
void check_decorate();
|
|
};
|