Какая ошибка в тесте С#?
Создаю тест автоматически для класса со следующим кодом:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ClassLibrary
{
public class Odd
{
public static bool IsOdd(int i)
{
return i % 2 == 0;
}
}
}
Вот такой вот у меня код получается:
using ClassLibrary;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
namespace TestProject1
{
/// <summary>
///This is a test class for OddTest and is intended
///to contain all OddTest Unit Tests
///</summary>
[TestClass()]
public class OddTest
{
private TestContext testContextInstance;
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}
#region Additional test attributes
//
//You can use the following additional attributes as you write your tests:
//
//Use ClassInitialize to run code before running the first test in the class
//[ClassInitialize()]
//public static void MyClassInitialize(TestContext testContext)
//{
//}
//
//Use ClassCleanup to run code after all tests in a class have run
//[ClassCleanup()]
//public static void MyClassCleanup()
//{
//}
//
//Use TestInitialize to run code before running each test
//[TestInitialize()]
//public void MyTestInitialize()
//{
//}
//
//Use TestCleanup to run code after each test has run
//[TestCleanup()]
//public void MyTestCleanup()
//{
//}
//
#endregion
/// <summary>
///A test for Odd Constructor
///</summary>
[TestMethod()]
public void OddConstructorTest()
{
Odd target = new Odd();
Assert.Inconclusive("TODO: Implement code to verify target");
}
/// <summary>
///A test for IsOdd
///</summary>
[TestMethod()]
public void IsOddTest()
{
int i = 0; // TODO: Initialize to an appropriate value
bool expected = false; // TODO: Initialize to an appropriate value
bool actual;
actual = Odd.IsOdd(i);
Assert.AreEqual(expected, actual);
Assert.Inconclusive("Verify the correctness of this test method.");
}
}
}
Но потом возникает ошибка:
Assert.AreEqual failed. Expected:< False>. Actual:< True>.
В чем же ошибка?
Как ее можно исправить?
14 коментарів
Додати коментар Підписатись на коментаріВідписатись від коментарів