| using System; | 
 | using System.Text; | 
 | using System.Collections.Generic; | 
 | using System.Linq; | 
 | using Microsoft.VisualStudio.TestTools.UnitTesting; | 
 | using OfficeOpenXml.FormulaParsing; | 
 |  | 
 | namespace EPPlusTest.FormulaParsing | 
 | { | 
 |     [TestClass] | 
 |     public class ParsingContextTests | 
 |     { | 
 |         [TestMethod] | 
 |         public void ConfigurationShouldBeSetByFactoryMethod() | 
 |         { | 
 |             var context = ParsingContext.Create(); | 
 |             Assert.IsNotNull(context.Configuration); | 
 |         } | 
 |  | 
 |         [TestMethod] | 
 |         public void ScopesShouldBeSetByFactoryMethod() | 
 |         { | 
 |             var context = ParsingContext.Create(); | 
 |             Assert.IsNotNull(context.Scopes); | 
 |         } | 
 |     } | 
 | } |