internal MyStore(CommonAbstractStoreBehaviourTest outerInstance, Config config, PageCache pageCache, int recordHeaderSize) : this(outerInstance, config, pageCache, new MyFormat(outerInstance, recordHeaderSize))
 {
     this._outerInstance = outerInstance;
 }
 internal MyStore(CommonAbstractStoreBehaviourTest outerInstance, Config config, PageCache pageCache, MyFormat format) : base(new File("store"), new File("idFile"), config, IdType.NODE, new DefaultIdGeneratorFactory(outerInstance.fs.Get()), pageCache, NullLogProvider.Instance, "T", format, format, "XYZ")
 {
     this._outerInstance = outerInstance;
 }
 internal MyFormat(CommonAbstractStoreBehaviourTest outerInstance, int recordHeaderSize) : base(x->4, recordHeaderSize, 32)