public void Lockout_Template_NullParameter_Test() { var template = new Lockout(null); var output = template.TransformText(); Assert.NotNull(output); Assert.NotEmpty(output); }
public void Lockout_Template_Test() { var template = new Lockout(new SmartAppInfo { Id = ApplicationId }); var output = template.TransformText(); Assert.NotNull(output); Assert.NotEmpty(output); }
private void TransformViewsAccountLockout(SmartAppInfo manifest) { var template = new Lockout(manifest); _writingService.WriteFile(Path.Combine(_context.BasePath, template.OutputPath), template.TransformText()); }