public override UnitTestElementDisposition GetDisposition()
        {
            var projectFile = GetProjectFile(_path);

            var range = new TextRange(0, 0);
            var location = new UnitTestElementLocation(projectFile, range, range);

            var unitTestElementLocations = new[] { location };
            return new UnitTestElementDisposition(unitTestElementLocations, this);
        }
示例#2
0
        public override UnitTestElementDisposition GetDisposition()
        {
            var projectFile = GetProjectFile(_path);

            var range    = new TextRange(0, 0);
            var location = new UnitTestElementLocation(projectFile, range, range);

            var unitTestElementLocations = new[] { location };

            return(new UnitTestElementDisposition(unitTestElementLocations, this));
        }