Esempio n. 1
0
        public void ManageSetPassword_Template_NullParameter_Test()
        {
            var template = new ManageSetPassword(null);

            Assert.Throws <NullReferenceException>(() => template.TransformText());
        }
Esempio n. 2
0
        private void TransformViewsManageManageSetPassword(SmartAppInfo manifest)
        {
            var template = new ManageSetPassword(manifest);

            _writingService.WriteFile(Path.Combine(_context.BasePath, template.OutputPath), template.TransformText());
        }