TestRunner.TestCase.TestCase C# (CSharp) 메소드

TestCase() 공개 메소드

public TestCase ( string filename, string options, string deps ) : System
filename string
options string
deps string
리턴 System
		public TestCase (string filename, string[] options, string[] deps)
		{
			this.FileName = filename;
			this.CompilerOptions = options;
			this.Dependencies = deps;
		}
	}
TestCase