| 23 | }; |
| 24 | |
| 25 | static State stateFlag( State newState = doNotChange ) |
| 26 | { |
| 27 | static State state = notCreated; |
| 28 | if ( newState != doNotChange ) |
| 29 | state = newState; |
| 30 | return state; |
| 31 | } |
| 32 | |
| 33 | static TestFactoryRegistryList *getInstance() |
| 34 | { |
no outgoing calls
no test coverage detected