コード例 #1
0
        public void UpdateOutputFilesThrowsArgumentExceptionWhenInputFileIsNotRooted()
        {
            ITransformationContextProvider target = CreateTransformationContextProvider();

            target.UpdateOutputFiles("input.tt", new OutputFile[0]);
        }
コード例 #2
0
        public void UpdateOutputFilesThrowsArgumentExceptionWhenAnyOutputFileIsNull()
        {
            ITransformationContextProvider target = CreateTransformationContextProvider();

            target.UpdateOutputFiles(@"C:\input.tt", new OutputFile[1]);
        }
コード例 #3
0
        public void UpdateOutputFilesThrowsArgumentNullExceptionWhenInputFileIsNull()
        {
            ITransformationContextProvider target = CreateTransformationContextProvider();

            target.UpdateOutputFiles(null, new OutputFile[0]);
        }