Click here to Skip to main content
15,910,083 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Intellitest - Automated Test Generation. Pin
Dan Neely4-Sep-15 4:21
Dan Neely4-Sep-15 4:21 
GeneralRe: Intellitest - Automated Test Generation. Pin
Nagy Vilmos4-Sep-15 3:29
professionalNagy Vilmos4-Sep-15 3:29 
GeneralRe: Intellitest - Automated Test Generation. Pin
Dan Neely4-Sep-15 3:18
Dan Neely4-Sep-15 3:18 
QuestionRe: Intellitest - Automated Test Generation. Pin
Eddy Vluggen4-Sep-15 1:11
professionalEddy Vluggen4-Sep-15 1:11 
AnswerRe: Intellitest - Automated Test Generation. Pin
shrknt354-Sep-15 2:10
shrknt354-Sep-15 2:10 
GeneralRe: Intellitest - Automated Test Generation. Pin
Eddy Vluggen4-Sep-15 2:19
professionalEddy Vluggen4-Sep-15 2:19 
GeneralRe: Intellitest - Automated Test Generation. Pin
Dan Neely4-Sep-15 3:06
Dan Neely4-Sep-15 3:06 
GeneralRe: Intellitest - Automated Test Generation. Pin
F-ES Sitecore4-Sep-15 3:36
professionalF-ES Sitecore4-Sep-15 3:36 
None of those are issues. Your unit tests shouldn't touch UI (winforms UI is inherently non unit testable, as is the session\cookies\etc\etc in a website), or the filesystem, or database connections. Unit tests are *not* integration tests, end-to-end tests, UI tests or anything else...they are for unit testing small functions of code, and not all code is unit testable. If your code is behind a click event it is untestable, if it references a textbox it is untestable, if it touches *any* resource not in its immediate environment such as file system\database\asp session\etc it is untestable.

If you want your code unit-testable it normally takes a large amount of time and effort and specific architectural patterns such as abstracting away file systems etc, for it to be achieved. The reason the tool is ignoring your code is actually correct...that code can't be unit tested.
GeneralRe: Intellitest - Automated Test Generation. Pin
Dan Neely4-Sep-15 4:27
Dan Neely4-Sep-15 4:27 
GeneralRe: Intellitest - Automated Test Generation. Pin
F-ES Sitecore4-Sep-15 4:37
professionalF-ES Sitecore4-Sep-15 4:37 
GeneralRe: Intellitest - Automated Test Generation. Pin
shrknt354-Sep-15 3:54
shrknt354-Sep-15 3:54 
GeneralBest place to be a programmer..? Pin
User 101325463-Sep-15 23:51
User 101325463-Sep-15 23:51 
GeneralRe: Best place to be a programmer..? Pin
megaadam3-Sep-15 23:57
professionalmegaadam3-Sep-15 23:57 
GeneralRe: Best place to be a programmer..? Pin
User 101325464-Sep-15 0:00
User 101325464-Sep-15 0:00 
GeneralRe: Best place to be a programmer..? Pin
RossMW4-Sep-15 0:12
professionalRossMW4-Sep-15 0:12 
GeneralRe: Best place to be a programmer..? Pin
User 101325464-Sep-15 0:17
User 101325464-Sep-15 0:17 
GeneralRe: Best place to be a programmer..? Pin
RossMW4-Sep-15 0:23
professionalRossMW4-Sep-15 0:23 
GeneralRe: Best place to be a programmer..? Pin
User 101325464-Sep-15 0:30
User 101325464-Sep-15 0:30 
GeneralRe: Best place to be a programmer..? Pin
RossMW4-Sep-15 0:38
professionalRossMW4-Sep-15 0:38 
GeneralRe: Best place to be a programmer..? Pin
User 101325464-Sep-15 0:45
User 101325464-Sep-15 0:45 
GeneralRe: Best place to be a programmer..? Pin
RossMW4-Sep-15 0:50
professionalRossMW4-Sep-15 0:50 
GeneralRe: Best place to be a programmer..? Pin
User 101325464-Sep-15 0:55
User 101325464-Sep-15 0:55 
GeneralRe: Best place to be a programmer..? Pin
RossMW4-Sep-15 9:29
professionalRossMW4-Sep-15 9:29 
GeneralRe: Best place to be a programmer..? Pin
Nagy Vilmos4-Sep-15 0:14
professionalNagy Vilmos4-Sep-15 0:14 
QuestionRe: Best place to be a programmer..? Pin
Eddy Vluggen4-Sep-15 0:16
professionalEddy Vluggen4-Sep-15 0:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.