()
| 624 | } |
| 625 | |
| 626 | public static SampleList CreateSampleList() |
| 627 | { |
| 628 | SampleList list = new(); |
| 629 | for (int i = 0; i < ListSize; i++) |
| 630 | { |
| 631 | list.Values.Add(CreateSample()); |
| 632 | } |
| 633 | |
| 634 | return list; |
| 635 | } |
| 636 | |
| 637 | public static MediaContentList CreateMediaContentList() |
| 638 | { |
no test coverage detected