Add stdexcept header in unit test files

This commit is contained in:
Luis Diaz Mas 2018-08-26 13:29:13 +02:00 committed by Luis Díaz Más
parent d96b619515
commit 0bc6fbcea7
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,8 @@
#include "gtestwrapper.h"
#include <stdexcept>
TEST(enforce, errMessage)
{
try {

View File

@ -5,6 +5,7 @@
#include <fstream>
#include <cstdio>
#include <cerrno>
#include <stdexcept>
#include "gtestwrapper.h"