Not able to run my Class in Eclipse TestNg

I m facing prbm in running my code in eclipse using TestNg. When i treid to run my code using Testng Test it does not excute and i got the below response in console . Im not able to solve this problem . Kindy help
** Response In Console After Running my code **

[RemoteTestNG] detected TestNG version 6.9.9
[TestNG] Running:
C:\Users\anshita\AppData\Local\Temp\testng-eclipse-1997002605\testng-customsuite.xml

===============================================
Default test
Tests run: 0, Failures: 0, Skips: 0

===============================================
Default suite
Total tests run: 0, Failures: 0, Skips: 0

[TestNG] Time taken by org.testng.reporters.XMLReporter@79698539: 15 ms
[TestNG] Time taken by org.testng.reporters.JUnitReportReporter@4e04a765: 0 ms
[TestNG] Time taken by org.testng.reporters.EmailableReporter2@5f2050f6: 0 ms
[TestNG] Time taken by org.testng.reporters.jq.Main@13969fbe: 156 ms
[TestNG] Time taken by [FailedReporter passed=0 failed=0 skipped=0]: 0 ms
[TestNG] Time taken by org.testng.reporters.SuiteHTMLReporter@1554909b: 188 ms

!

Do you have any tests defined with an “@Test” annotation? From the results, it looks like there are no tests defined in your class.

@Anshita it seems you haven’t annotated aney test method with @Test. Please check

Yes did that Thank you so much … its resolved working now.

Yes did that in my code and now its working correct