unittest-cpp/xcode_projects/xcode4-6/TestUnitTest++/main.cpp
Christopher Frederick 093ef7eca9 Add a target for TestUnitTest++
TestUnitTest++ is a command-line tool.
2013-04-18 11:47:01 +09:00

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;
}