Advertisement
Guest User

Untitled

a guest
May 12th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include "Grid.h"
  2. #include "AutomationTest.h"
  3.  
  4. IMPLEMENT_SIMPLE_AUTOMATION_TEST(FConstructionTest, "GridTest.Grid.Constructor Test", EAutomationTestFlags::EditorContext | EAutomationTestFlags::SmokeFilter)
  5. bool FConstructionTest::RunTest(const FString& Parameters)
  6. {
  7.  
  8.     //Construct a AGrid object
  9.     AGrid TestGrid;
  10.  
  11.     //TODO: Stuff
  12.  
  13.     return true;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement