@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
1 lines • 610 B
JavaScript
import{TESTING_STRING}from"./string.const";import{TESTING_NUMBER}from"./number.const";import{TESTING_SYMBOL_STRING,TESTING_SYMBOL_NUMBER}from"./symbol.const";export class TestingClass{1030405027="my new number";5=27;firstName="My name";surname="Surname";age=TESTING_NUMBER;city=TESTING_STRING;get[TESTING_NUMBER](){return this.age}get[TESTING_STRING](){return this.city}get[TESTING_SYMBOL_NUMBER](){return this.age}get[TESTING_SYMBOL_STRING](){return this.city}}export const TESTING_CLASS=new TestingClass;export class TestingPerson{firstName="";surname="";age=15}export const TESTING_PERSON=new TestingPerson;