what is unit testing
UNIT TESTING is a software testing where individual
units or components of a software are tested.
The purpose is to validate that each unit of the
software performs as designed.
what is unit testing
UNIT TESTING is a software testing where individual
units or components of a software are tested.
The purpose is to validate that each unit of the
software performs as designed.
what is component testing
Testing each component of the application
separately. In application it could be
one component. One component has
stand-alone functionality.
Ex. in amazon.com Seller functionality
can be one component. Buyer can be another
component. Also, Amazon prime videos
can be another component.
Unit Testing
It is part of the white box testing.
It’s done by the developers before
they deploy the code from Development
environment to QA environment.
• Since it is performed by developers,
I have never done unit testing yet.
But I think I can learn it and do it if it is needed
what is a unit testable code
public class SomeClass
{
public SomeClass(calculatedParams)
{
...
}
}
public interface ISomeClassCreator
{
SomeClass Create(params);
}
public class SomeClassCreator: ISomeClassCreator
{
public SomeClass Create(params)
{
...
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us