Beispiel #1
0
        public void CommandLine_NoAdditionalMacros_Linux()
        {
            var sut = new MakeSubclass
            {
                BuildEngine = _tbi,
                Makefile    = "MyMakefile"
            };

            Assert.That(sut.GetCommandLine(), Is.EqualTo("BUILD_TYPE=d -f MyMakefile all"));
        }
Beispiel #2
0
        public void CommandLine_NoAdditionalMacros_Windows()
        {
            var sut = new MakeSubclass
            {
                BuildEngine = _tbi,
                Makefile    = "MyMakefile"
            };

            Assert.That(sut.GetCommandLine(), Is.EqualTo("/nologo BUILD_TYPE=d /f MyMakefile"));
        }