Lines Matching refs:spFileSystem
18 let spFileSystem = new SpFileSystem(); variable
20 spFileSystem.startSamp = true;
21 expect(spFileSystem.startSamp).toBeTruthy();
25 spFileSystem.startSamp = false;
26 expect(spFileSystem.startSamp).toBeFalsy();
30 expect(spFileSystem.getSystemConfig()).toStrictEqual({
37 expect(spFileSystem.unDisable()).toBeUndefined();
41 expect(spFileSystem.disable()).toBeUndefined();
45 spFileSystem.startRecord = true;
46 expect(spFileSystem.startRecord).toBeTruthy();
50 spFileSystem.startRecord = false;
51 expect(spFileSystem.startRecord).toBeFalsy();
55 spFileSystem.startFileSystem = true;
56 expect(spFileSystem.startFileSystem).toBeTruthy();
60 spFileSystem.startFileSystem = false;
61 expect(spFileSystem.startFileSystem).toBeFalsy();
65 spFileSystem.startVirtualMemory = true;
66 expect(spFileSystem.startVirtualMemory).toBeTruthy();
70 spFileSystem.startVirtualMemory = false;
71 expect(spFileSystem.startVirtualMemory).toBeFalsy();
75 spFileSystem.startIo = true;
76 expect(spFileSystem.startIo).toBeTruthy();
80 spFileSystem.startIo = false;
81 expect(spFileSystem.startIo).toBeFalsy();