12 lines
112 B
C++
12 lines
112 B
C++
/* tests.cpp
|
|
|
|
unit test & such
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
int test2() {
|
|
cout << "not done yet";
|
|
return 1;
|
|
}
|