new MasterSnapshotSource(null);
}
//-------------------------------------------------------------------------
public void test_getSnapshot_noOverride_found() throws Exception {
MarketDataSnapshotMaster mock = mock(MarketDataSnapshotMaster.class);
MarketDataSnapshotDocument doc = new MarketDataSnapshotDocument(example());
when(mock.get(UID)).thenReturn(doc);
MasterSnapshotSource test = new MasterSnapshotSource(mock);
StructuredMarketDataSnapshot testResult = test.get(UID);
verify(mock, times(1)).get(UID);
assertEquals(example(), testResult);