-- -- tests/actions/vstudio/vc2010/test_header.lua -- Validate generation of the project file header block. -- Copyright (c) 2011-2012 Jason Perkins and the Premake project -- local suite = test.declare("vstudio_vc2010_header") local vc2010 = premake.vstudio.vc2010 -- -- If a default build target is specified, it should be included in the -- generated Project element. -- function suite.project_on2010() _ACTION = "vs2010" vc2010.project() test.capture [[ ]] end function suite.project_on2011() _ACTION = "vs2012" vc2010.project() test.capture [[ ]] end function suite.project_on2013() _ACTION = "vs2013" vc2010.project() test.capture [[ ]] end