Example #1
0
        public void TestDataFromXls()
        {
            if (IntPtr.Size == 8)  // Test always fails in 64-bit; no JET engine
            {
                return;
            }

            MethodInfo      method = typeof(TestMethodCommandClass).GetMethod("TestViaXls");
            TheoryAttribute attr   = (TheoryAttribute)(method.GetCustomAttributes(typeof(TheoryAttribute), false))[0];

            List <ITestCommand> commands = new List <ITestCommand>(attr.CreateTestCommands(Reflector.Wrap(method)));

            Assert.Equal(2, commands.Count);
            TheoryCommand command1 = Assert.IsType <TheoryCommand>(commands[0]);

            Assert.Equal(3, command1.Parameters.Length);
            Assert.Equal <object>(1D, command1.Parameters[0]);
            Assert.Equal <object>("Foo", command1.Parameters[1]);
            Assert.Equal <object>("Bar", command1.Parameters[2]);
            TheoryCommand command2 = Assert.IsType <TheoryCommand>(commands[1]);

            Assert.Equal(3, command2.Parameters.Length);
            Assert.Equal <object>(14D, command2.Parameters[0]);
            Assert.Equal <object>("Biff", command2.Parameters[1]);
            Assert.Equal <object>("Baz", command2.Parameters[2]);
        }
Example #2
0
        public void TestDataFromOleDb()
        {
            if (IntPtr.Size == 8)  // Test always fails in 64-bit; no JET engine
            {
                return;
            }

            string currentDirectory = Directory.GetCurrentDirectory();

            try
            {
                string executable = Assembly.GetExecutingAssembly().GetLocalCodeBase();
                Directory.SetCurrentDirectory(Path.GetDirectoryName(executable));
                MethodInfo      method = typeof(TestMethodCommandClass).GetMethod("TestViaOleDb");
                TheoryAttribute attr   = (TheoryAttribute)(method.GetCustomAttributes(typeof(TheoryAttribute), false))[0];

                List <ITestCommand> commands = new List <ITestCommand>(attr.CreateTestCommands(Reflector.Wrap(method)));

                Assert.Equal(2, commands.Count);
                TheoryCommand command1 = Assert.IsType <TheoryCommand>(commands[0]);
                Assert.Equal(3, command1.Parameters.Length);
                Assert.Equal <object>(1D, command1.Parameters[0]);
                Assert.Equal <object>("Foo", command1.Parameters[1]);
                Assert.Equal <object>("Bar", command1.Parameters[2]);
                TheoryCommand command2 = Assert.IsType <TheoryCommand>(commands[1]);
                Assert.Equal(3, command2.Parameters.Length);
                Assert.Equal <object>(14D, command2.Parameters[0]);
                Assert.Equal <object>("Biff", command2.Parameters[1]);
                Assert.Equal <object>("Baz", command2.Parameters[2]);
            }
            finally
            {
                Directory.SetCurrentDirectory(currentDirectory);
            }
        }
Example #3
0
        public void TestDataFromOtherTypeProperty()
        {
            MethodInfo      method = typeof(TestMethodCommandClass).GetMethod("TestViaOtherTypeProperty");
            TheoryAttribute attr   = (TheoryAttribute)(method.GetCustomAttributes(typeof(TheoryAttribute), false))[0];

            List <ITestCommand> commands = new List <ITestCommand>(attr.CreateTestCommands(Reflector.Wrap(method)));

            ITestCommand  command       = Assert.Single(commands);
            TheoryCommand theoryCommand = Assert.IsType <TheoryCommand>(command);
            object        parameter     = Assert.Single(theoryCommand.Parameters);

            Assert.Equal(3, parameter);
        }
Example #4
0
        public void ResolvedGenericTypeIsIncludedInDisplayName()
        {
            MethodInfo      method = typeof(TestMethodCommandClass).GetMethod("GenericTest");
            TheoryAttribute attr   = (TheoryAttribute)(method.GetCustomAttributes(typeof(TheoryAttribute), false))[0];

            List <ITestCommand> commands = new List <ITestCommand>(attr.CreateTestCommands(Reflector.Wrap(method)));

            Assert.Equal(4, commands.Count);
            TheoryCommand command1 = Assert.IsType <TheoryCommand>(commands[0]);

            Assert.Equal(@"Xunit1.Extensions.TheoryAttributeTests+TestMethodCommandClass.GenericTest<Int32>(value: 42)", command1.DisplayName);
            TheoryCommand command2 = Assert.IsType <TheoryCommand>(commands[1]);

            Assert.Equal(@"Xunit1.Extensions.TheoryAttributeTests+TestMethodCommandClass.GenericTest<String>(value: ""Hello, world!"")", command2.DisplayName);
            TheoryCommand command3 = Assert.IsType <TheoryCommand>(commands[2]);

            Assert.Equal(@"Xunit1.Extensions.TheoryAttributeTests+TestMethodCommandClass.GenericTest<Int32[]>(value: System.Int32[])", command3.DisplayName);
            // TODO: Would like to see @"TheoryAttributeTests+TestMethodCommandClass.GenericTest<Int32[]>(value: Int32[] { 1, 2, 3 })"
            TheoryCommand command4 = Assert.IsType <TheoryCommand>(commands[3]);

            Assert.Equal(@"Xunit1.Extensions.TheoryAttributeTests+TestMethodCommandClass.GenericTest<List<String>>(value: System.Collections.Generic.List`1[System.String])", command4.DisplayName);
            // TODO: Would like to see @"TheoryAttributeTests+TestMethodCommandClass.GenericTest<List<String>>(value: List<String> { ""a"", ""b"", ""c"" })"
        }