コード例 #1
0
ファイル: catch_context_impl.hpp プロジェクト: ibond/Catch
 size_t Context::getGeneratorIndex( const std::string& fileInfo, size_t totalSize ) {
     return getGeneratorsForCurrentTest()
         .getGeneratorInfo( fileInfo, totalSize )
         .getCurrentIndex();
 }
コード例 #2
0
ファイル: catch_context_impl.hpp プロジェクト: steaph/Catch
 virtual size_t getGeneratorIndex( std::string const& fileInfo, size_t totalSize ) {
     return getGeneratorsForCurrentTest()
     .getGeneratorInfo( fileInfo, totalSize )
     .getCurrentIndex();
 }