mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
28 lines
326 B
C++
28 lines
326 B
C++
#include "stdafx.h"
|
|
|
|
TEST_CLASS(UnitTest1)
|
|
{
|
|
TEST_METHOD(TestMethod1)
|
|
{
|
|
setup_ps3_environment();
|
|
}
|
|
|
|
TEST_METHOD(TestMethod2)
|
|
{
|
|
// TODO: Your test code here
|
|
}
|
|
};
|
|
|
|
TEST_CLASS(UnitTest2)
|
|
{
|
|
TEST_METHOD(TestMethod1)
|
|
{
|
|
// TODO: Your test code here
|
|
}
|
|
|
|
TEST_METHOD(TestMethod2)
|
|
{
|
|
// TODO: Your test code here
|
|
}
|
|
};
|