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

            return(GetItem(type.Type));
        }
Exemplo n.º 3
0
 public ApplicationUnderTest(ApplicationUnderTest other)
 {
     assemblies = new Assemblies(other.assemblies);
     namespaces = new Namespaces(other.namespaces);
 }
Exemplo n.º 4
0
 public ApplicationUnderTest(ApplicationUnderTest other)
 {
     assemblies = new Assemblies(other.assemblies);
     namespaces = new Namespaces(other.namespaces);
 }
Exemplo n.º 5
0
 public void AddNamespace(string namespaceName) {
     ApplicationUnderTest.AddNamespace(namespaceName);
 }