ng-mocks 14.7.2 → 14.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/example.spec.ts CHANGED
@@ -52,6 +52,8 @@ class TranslatePipe implements PipeTransform {
52
52
  class AppComponent {
53
53
  @Output() public logoClick = new EventEmitter<void>();
54
54
  @Input() public title = 'My Application';
55
+
56
+ public appRootMain() {}
55
57
  }
56
58
 
57
59
  // A dependency component out of which we want to create a mock
@@ -72,6 +74,8 @@ class AppHeaderComponent {
72
74
  public menu?: TemplateRef<ElementRef>;
73
75
  @Input() public showLogo = false;
74
76
  @Input() public title = '';
77
+
78
+ public appHeaderMain() {}
75
79
  }
76
80
 
77
81
  // The module where our components are declared.