public void AddElementUnitTest()
        {
            Assert.Inconclusive("TODO");

            var target = new FulltextSearchResult();    // TODO: Initialize to an appropriate value
            FulltextSearchResultElement element = null; // TODO: Initialize to an appropriate value

            target.AddElement(element);
        }
        public void FulltextSearchResultElementConstructorUnitTest()
        {
            Assert.Inconclusive("TODO");

            AGraphElement        graphElement = null; // TODO: Initialize to an appropriate value
            double               score        = 0F;   // TODO: Initialize to an appropriate value
            IEnumerable <string> highlights   = null; // TODO: Initialize to an appropriate value
            var target = new FulltextSearchResultElement(graphElement, score, highlights);
        }
 /// <summary>
 /// Creates a new FulltextSearchResultElementREST instance
 /// </summary>
 public FulltextSearchResultElementREST(FulltextSearchResultElement toBeTransferredResult)
 {
     if (toBeTransferredResult != null)
     {
         GraphElementId = toBeTransferredResult.GraphElement.Id;
         Highlights     = toBeTransferredResult.Highlights;
         Score          = toBeTransferredResult.Score;
     }
 }