Exemplo n.º 1
0
        private void AddTestContainerIfTestFile(string file)
        {
            var isTestFile = IsTestFile(file);

            RemoveTestContainer(file); // Remove if there is an existing container

            // If this is a test file
            if (isTestFile)
            {
                var container = new tSQLtTestContainer(this, file, ExecutorUri);
                cachedContainers.Add(container);
            }
        }
 private tSQLtTestContainer(tSQLtTestContainer copy)
     : this(copy.discoverer, copy.Source, copy.ExecutorUri)
 {
     this.timeStamp = copy.timeStamp;
 }