mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-27 00:28:49 +03:00
18 lines
294 B
C++
18 lines
294 B
C++
//
|
|
// main.cpp
|
|
// TestUnitTest++
|
|
//
|
|
// Created by Christopher Frederick on 2013/04/18.
|
|
// Copyright (c) 2013 UnitTest++. All rights reserved.
|
|
//
|
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
|
|
// insert code here...
|
|
std::cout << "Hello, World!\n";
|
|
return 0;
|
|
}
|
|
|