BibtexImporter.Tests.ImportTest.TestFileWithComments C# (CSharp) Method

TestFileWithComments() private method

private TestFileWithComments ( ) : void
return void
        public void TestFileWithComments()
        {
            string fileContent = File.ReadAllText("Test Files\\comments.bib");

            BibtexFile file = BibtexLibrary.BibtexImporter.FromString(fileContent);

            Assert.AreEqual(1, file.Entries.Count);
        }