-- -- tests/actions/vstudio/vc2010/test_prop_sheet.lua -- Validate generation of the property sheet import groups. -- Copyright (c) 2011-2012 Jason Perkins and the Premake project -- T.vstudio_vs2010_prop_sheet = { } local suite = T.vstudio_vs2010_prop_sheet local vc2010 = premake.vstudio.vc2010 local project = premake.project -- -- Setup -- local sln, prj, cfg function suite.setup() sln, prj = test.createsolution() end local function prepare() cfg = project.getconfig(prj, "Debug") vc2010.propertySheets(cfg) end -- -- Check the structure with the default project values. -- function suite.structureIsCorrect_onDefaultValues() prepare() test.capture [[ ]] end