コード例 #1
0
        public void GetCarInfoServiceTest()
        {
            // todo: incorrect implementation gives to incorrect test
            var actual = _target.GetCarInfoService("token");

            Assert.IsNotNull(actual);
        }
コード例 #2
0
        public void GetCarInfoServiceTest_ReturnCarInfoService()
        {
            // Arrange
            // Act
            var actual = _target.GetCarInfoService(TestToken);

            // Assert
            Assert.AreEqual(typeof(CarInfoService), actual.GetType());
        }