|
| 1 | +using System.Collections.Generic; |
| 2 | +using System.Linq; |
| 3 | +using net.r_eg.MvsSln; |
| 4 | +using net.r_eg.MvsSln.Core; |
| 5 | +using Xunit; |
| 6 | + |
| 7 | +namespace MvsSlnTest.Core |
| 8 | +{ |
| 9 | + public class XProjectEnv |
| 10 | + { |
| 11 | + [Fact] |
| 12 | + public void SlnPropertiesTest() |
| 13 | + { |
| 14 | + var cfgsln = new Dictionary<string, string>() { { PropertyNames.CONFIG, "Debug" }, { PropertyNames.PLATFORM, "Any CPU" } }; |
| 15 | + var cfgprj = new Dictionary<string, string>() { { PropertyNames.CONFIG, "DBGprj" }, { PropertyNames.PLATFORM, "Win32" } }; |
| 16 | + var cfg = new ConfigItem("DBGprj", "Win32"); |
| 17 | + |
| 18 | + using(var sln = new Sln(TestData.PathTo(@"XProjectEnv\slnProperties\Cpp\App.sln"), SlnItems.Env)) |
| 19 | + { |
| 20 | + var env = new XProjectEnvStub(sln.Result, cfgsln); |
| 21 | + env.XProjectByFile(sln.Result.ProjectItems.First().fullPath, cfg, cfgprj); |
| 22 | + |
| 23 | + Assert.Equal("Debug", cfgsln[PropertyNames.CONFIG]); |
| 24 | + Assert.Equal("Any CPU", cfgsln[PropertyNames.PLATFORM]); |
| 25 | + |
| 26 | + Assert.Equal("DBGprj", cfgprj[PropertyNames.CONFIG]); |
| 27 | + Assert.Equal("Win32", cfgprj[PropertyNames.PLATFORM]); |
| 28 | + |
| 29 | + Assert.Equal("DBGprj", cfg.Configuration); |
| 30 | + Assert.Equal("Win32", cfg.Platform); |
| 31 | + |
| 32 | + Assert.Equal(cfgsln[PropertyNames.CONFIG], env.SlnProperties[PropertyNames.CONFIG]); |
| 33 | + Assert.Equal(cfgsln[PropertyNames.PLATFORM], env.SlnProperties[PropertyNames.PLATFORM]); |
| 34 | + } |
| 35 | + } |
| 36 | + } |
| 37 | +} |
0 commit comments