me gustaría cambiar entre pruebas NUnit y VS así:Declarar símbolo preprocesor (como DEBUG) a nivel mundial para todo el proyecto
#if !NUNIT
using Microsoft.VisualStudio.TestTools.UnitTesting;
#else
using NUnit.Framework;
using TestClass = NUnit.Framework.TestFixtureAttribute;
using TestMethod = NUnit.Framework.TestAttribute;
using TestInitialize = NUnit.Framework.SetUpAttribute;
using TestCleanup = NUnit.Framework.TearDownAttribute;
using TestContext = System.String;
using DeploymentItem = NUnit.Framework.DescriptionAttribute;
#endif
Mi pregunta es, ¿en qué puedo declarar nUnit símbolo preprocesor en un solo lugar (Aplicación .config o así, sería genial), para cambiar entre NUnit y VSTests fácilmente? Porque cuando uso #define NUNIT
, funciona solo para el archivo, donde está escrito.