ln.skyscanner/crawl/CrawlTests.cs

34 lines
664 B
C#

// /**
// * File: CrawlTests.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
using ln.skyscanner.crawl.tests;
using System.Collections.Generic;
namespace ln.skyscanner.crawl
{
public class CrawlTests
{
public CrawlTest[] Tests => crawlTests.ToArray();
private List<CrawlTest> crawlTests = new List<CrawlTest>();
public CrawlTests()
{
}
public void AddTest(CrawlTest crawlTest)
{
}
}
}