{"ScriptPreparationCode":null,"TestCases":[{"Name":"Create 100000 Objects with same service","Code":"class AuthUser {}\r\n\r\nclass UserService {\r\n constructor(authUser) {\r\n this.authUser = authUser;\r\n }\r\n\r\n getUserById(id) {\r\n return id;\r\n }\r\n}\r\n\r\nconst userService = new UserService(new AuthUser());\r\n\r\nfor (i = 0; i \u003C 100000; i\u002B\u002B) {\r\n userService.authUser = new AuthUser();\r\n}","IsDeferred":false},{"Name":"Create 100000 Objects","Code":"class AuthUser {}\r\n\r\nclass UserService {\r\n constructor(authUser) {\r\n this.authUser = authUser;\r\n }\r\n\r\n getUserById(id) {\r\n return id;\r\n }\r\n}\r\n\r\n\r\nfor (i = 0; i \u003C 100000; i\u002B\u002B) {\r\n new UserService(new AuthUser());\r\n}","IsDeferred":false}]}