GoogleTestAdapter.Model.TestCase.TestCase C# (CSharp) 메소드

TestCase() 공개 메소드

public TestCase ( string fullyQualifiedName, string source, string displayName, string codeFilePath, int lineNumber ) : System.Collections.Generic
fullyQualifiedName string
source string
displayName string
codeFilePath string
lineNumber int
리턴 System.Collections.Generic
        public TestCase(string fullyQualifiedName, string source, string displayName, string codeFilePath, int lineNumber)
        {
            FullyQualifiedName = fullyQualifiedName;
            Source = source;
            DisplayName = displayName;
            CodeFilePath = codeFilePath;
            LineNumber = lineNumber;
        }