public void ResponseEqualToExpectedValue()
        {
            //Arrange
            InventoryMgmtSystem.PrototypeFinder prototypeFinder = new InventoryMgmtSystem.PrototypeFinder();

            //Act
            String[] boxIDs = new string[7] {
                "abcde", "fghij", "klmno", "pqrst", "fguij", "axcye", "wvxyz"
            };
            var PrototypeFinderResponse = prototypeFinder.GetBoxesWithSimilarId(boxIDs.ToList());

            //Assert
            Assert.AreEqual("fgij", PrototypeFinderResponse);
        }
        public void IsPrototypeFinderResponseNotNull()
        {
            //Arrange
            InventoryMgmtSystem.PrototypeFinder prototypeFinder = new InventoryMgmtSystem.PrototypeFinder();

            //Act
            String[] boxIDs = new string[7] {
                "abcdef", "bababc", "abbcde", "abcccd", "aabcdd", "abcdee", "ababab"
            };
            var PrototypeFinderResponse = prototypeFinder.GetBoxesWithSimilarId(boxIDs.ToList());

            //Assert
            Assert.IsNotNull(PrototypeFinderResponse);
        }