@@ -11,7 +11,7 @@ class TestClass extends core.Base {
1111 fieldB = 2 ;
1212
1313 static config = {
14- className : 'Neo .TestClass' ,
14+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass' ,
1515 configA_ : 3 ,
1616 configB_ : 4
1717 }
@@ -65,6 +65,10 @@ test.describe('ClassConfigsAndFields', () => {
6565
6666 test ( 'Neo default class fields inside constructors' , ( ) => {
6767 class NeoCtorTest extends core . Base {
68+ static config = {
69+ className : 'Test.Unit.Core.ClassConfigsAndFields.NeoCtorTest'
70+ }
71+
6872 fieldA = 1 ;
6973 fieldB = 2 ;
7074
@@ -153,7 +157,7 @@ test.describe('ClassConfigsAndFields', () => {
153157
154158 test ( 'Class based class configs and fields' , ( ) => {
155159 const instance = Neo . create ( {
156- className : 'Neo .TestClass'
160+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass'
157161 } ) ;
158162
159163 expect ( instance . configA ) . toBe ( 4 ) ; // 1 + 3
@@ -164,7 +168,7 @@ test.describe('ClassConfigsAndFields', () => {
164168
165169 test ( 'Instance based class configs and fields' , ( ) => {
166170 const instance = Neo . create ( {
167- className : 'Neo .TestClass' ,
171+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass' ,
168172 fieldA : 5 ,
169173 configA : 6 ,
170174 configB : 7 ,
@@ -177,7 +181,7 @@ test.describe('ClassConfigsAndFields', () => {
177181 expect ( instance . fieldB ) . toBe ( 8 ) ;
178182
179183 const instance2 = Neo . create ( {
180- className : 'Neo .TestClass' ,
184+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass' ,
181185 fieldB : 8 ,
182186 configB : 7 ,
183187 configA : 6 ,
@@ -192,7 +196,7 @@ test.describe('ClassConfigsAndFields', () => {
192196
193197 test ( 'Dynamically changed class configs and fields' , ( ) => {
194198 const instance = Neo . create ( {
195- className : 'Neo .TestClass'
199+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass'
196200 } ) ;
197201
198202 instance . set ( {
@@ -208,7 +212,7 @@ test.describe('ClassConfigsAndFields', () => {
208212 expect ( instance . fieldB ) . toBe ( 8 ) ;
209213
210214 const instance2 = Neo . create ( {
211- className : 'Neo .TestClass'
215+ className : 'Test.Unit.Core.ClassConfigsAndFields .TestClass'
212216 } ) ;
213217
214218 instance2 . set ( {
0 commit comments