public ApplicationUnderTest(ApplicationUnderTest other)
 {
     assemblies = new List<Assembly>(other.assemblies);
     namespaces = new List<LanguageName>(other.namespaces);
 }
Exemple #2
0
        public object GetItem(string typeName)
        {
            RuntimeType type = new ApplicationUnderTest().FindType(new IdentifierName(typeName));

            return(GetItem(type.Type));
        }
 public ApplicationUnderTest(ApplicationUnderTest other)
 {
     assemblies = new Assemblies(other.assemblies);
     namespaces = new Namespaces(other.namespaces);
 }
 public ApplicationUnderTest(ApplicationUnderTest other)
 {
     assemblies = new Assemblies(other.assemblies);
     namespaces = new Namespaces(other.namespaces);
 }
Exemple #5
0
 public void AddNamespace(string namespaceName) {
     ApplicationUnderTest.AddNamespace(namespaceName);
 }