Codebase list chkservice / HEAD tests / chkui-test.cpp
HEAD

Tree @HEAD (Download .tar.gz)

chkui-test.cpp @HEADraw · history · blame

#include <iostream>
#include <catch.hpp>

#include "chk-ui.h"

using namespace std;

TEST_CASE("should create window", "[ChkUI]") {
  MainWindow *win = new MainWindow();

//  REQUIRE(win->screenSize->w > 0);

  delete win;
}