From 69ece4f699e73a854c197d4b19f64228d6eba7f9 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:20:30 -0600 Subject: [PATCH 01/31] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3679b4a98e..9f6b07d561 100644 --- a/README.md +++ b/README.md @@ -763,12 +763,12 @@ ## Whitespace - - Use soft tabs set to 2 spaces. + - Use soft tabs set to 4 spaces. ```javascript // bad function() { - ∙∙∙∙var name; + ∙∙var name; } // bad @@ -778,7 +778,7 @@ // good function() { - ∙∙var name; + ∙∙∙∙var name; } ``` @@ -948,24 +948,24 @@ ## Commas - - Leading commas: **Nope.** + - Leading commas: **Yes and no. Debate still going on. Personally prefer comma at the beginning** ```javascript - // bad + // not bad var story = [ once , upon , aTime ]; - // good + // not bad var story = [ once, upon, aTime ]; - // bad + // not bad var hero = { firstName: 'Bob' , lastName: 'Parr' @@ -973,7 +973,7 @@ , superPower: 'strength' }; - // good + // not bad var hero = { firstName: 'Bob', lastName: 'Parr', From 04ae18c2a604aded4e8d2f9885309e89827df89b Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:28:28 -0600 Subject: [PATCH 02/31] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f6b07d561..94a6ddef93 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/airbnb/javascript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) -# Airbnb JavaScript Style Guide() { +# Alarm.com JavaScript Style Guide() { *A mostly reasonable approach to JavaScript* From 1da88fd1b7e00dab02a1817e1c65bf8db6822c3c Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:37:58 -0600 Subject: [PATCH 03/31] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 94a6ddef93..e5fd6fa43f 100644 --- a/README.md +++ b/README.md @@ -261,6 +261,16 @@ ## Functions + - Function names: + -- "public" function: + --- camelCase + ```javascript + // anonymous function expression + var myPublicFunction = function() { + return true; + }; + ``` + - Function expressions: From 18ee54129e36a97afe7b629e6e0c4a2cfdecf5d7 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:39:17 -0600 Subject: [PATCH 04/31] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e5fd6fa43f..c34f28bf14 100644 --- a/README.md +++ b/README.md @@ -262,14 +262,20 @@ ## Functions - Function names: - -- "public" function: - --- camelCase + For "public" functions (that other modules might call) you should specify the function name as camelCase ```javascript // anonymous function expression var myPublicFunction = function() { return true; }; ``` + For "private" functions (that belong only to the module) you should specify the function name as _camelCase + ```javascript + // anonymous function expression + var _myPrivateFunction = function() { + return true; + }; + ``` - Function expressions: From d555eccc88895654a53641af60ed948c3ed42a06 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:39:53 -0600 Subject: [PATCH 05/31] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c34f28bf14..2fa187a87c 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,7 @@ ## Functions - Function names: + For "public" functions (that other modules might call) you should specify the function name as camelCase ```javascript // anonymous function expression From 57c3a5dc84c365acd1d0d132818b15b2b22a3e61 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:41:12 -0600 Subject: [PATCH 06/31] Update package.json --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 2fe47fb268..c49d6a2be3 100644 --- a/package.json +++ b/package.json @@ -7,17 +7,17 @@ }, "repository": { "type": "git", - "url": "https://github.com/airbnb/javascript.git" + "url": "https://github.com/mm2ha/javascript.git" }, "keywords": [ "style guide", "lint", - "airbnb" + "alarm.com" ], - "author": "Harrison Shoff (https://twitter.com/hshoff)", + "author": "Marko Miklo", "license": "MIT", "bugs": { - "url": "https://github.com/airbnb/javascript/issues" + "url": "https://github.com/mm2ha/javascript/issues" }, - "homepage": "https://github.com/airbnb/javascript" + "homepage": "https://github.com/mm2ha/javascript" } From c634a643ce33e6a472e4748bacf8c5b29adcfc48 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:41:43 -0600 Subject: [PATCH 07/31] Update jshintrc --- linters/jshintrc | 138 +++++++++++++++++++++++++++-------------------- 1 file changed, 81 insertions(+), 57 deletions(-) diff --git a/linters/jshintrc b/linters/jshintrc index cc6e398b40..0080395de1 100644 --- a/linters/jshintrc +++ b/linters/jshintrc @@ -1,59 +1,83 @@ { - /* - * ENVIRONMENTS - * ================= - */ - - // Define globals exposed by modern browsers. - "browser": true, - - // Define globals exposed by jQuery. - "jquery": true, - - // Define globals exposed by Node.js. - "node": true, - - /* - * ENFORCING OPTIONS - * ================= - */ - - // Force all variable names to use either camelCase style or UPPER_CASE - // with underscores. - "camelcase": true, - - // Prohibit use of == and != in favor of === and !==. - "eqeqeq": true, - - // Enforce tab width of 2 spaces. - "indent": 2, - - // Prohibit use of a variable before it is defined. - "latedef": true, - - // Enforce line length to 80 characters - "maxlen": 80, - - // Require capitalized names for constructor functions. - "newcap": true, - - // Enforce use of single quotation marks for strings. - "quotmark": "single", - - // Enforce placing 'use strict' at the top function scope - "strict": true, - - // Prohibit use of explicitly undeclared variables. - "undef": true, - - // Warn when variables are defined but never used. - "unused": true, - - /* - * RELAXING OPTIONS - * ================= - */ - - // Suppress warnings about == null comparisons. - "eqnull": true + // JSHint Default Configuration File (as on JSHint website) + // See http://jshint.com/docs/ for more details + + "maxerr": 99999, // {int} Maximum error before stopping + + /* + * ENFORCING OPTIONS + * ================= + */ + "bitwise": true, // true: Prohibit bitwise operators (&, |, ^, etc.) + "camelcase": true, // true: Identifiers must be in camelCase + "curly": true, // true: Require {} for every new block or scope + "eqeqeq": true, // true: Require triple equals (===) for comparison + "forin": true, // true: Require filtering for..in loops with obj.hasOwnProperty() + "immed": false, // true: Require immediate invocations to be wrapped in parens e.g. `(function () { } ());` + "indent": 4, // {int} Number of spaces to use for indentation. + // It no longer provides warnings about indentation levels. + // You can still use it to set your tab-width but it will be used only for character locations in other warnings. + "latedef": true, // true: Require variables/functions to be defined before being used + "newcap": true, // true: Require capitalization of all constructor functions e.g. `new F()` + "noarg": true, // true: Prohibit use of `arguments.caller` and `arguments.callee` + "noempty": true, // true: Prohibit use of empty blocks + "nonew": false, // true: Prohibit use of constructors for side-effects (without assignment) + "plusplus": false, // true: Prohibit use of `++` & `--` + "quotmark": "single", // Quotation mark consistency: + // false : do nothing (default) + // true : ensure whatever is used is consistent + // "single" : require single quotes + // "double" : require double quotes + "undef": true, // true: Require all non-global variables to be declared (prevents global leaks) + "unused": true, // true: Require all defined variables be used + "strict": true, // true: Requires all functions run in ES5 Strict Mode + "maxparams": false, // {int} Max number of formal params allowed per function + "maxdepth": false, // {int} Max depth of nested blocks (within functions) + "maxstatements": false, // {int} Max number statements per function + "maxcomplexity": false, // {int} Max cyclomatic complexity per function + "maxlen": 160, // {int} Max number of characters per line + + // Relaxing + "asi": false, // true: Tolerate Automatic Semicolon Insertion (no semicolons) + "boss": false, // true: Tolerate assignments where comparisons would be expected + "debug": true, // true: Allow debugger statements e.g. browser breakpoints. + "eqnull": true, // true: Tolerate use of `== null` + "es5": false, // true: Allow ES5 syntax (ex: getters and setters) + "esnext": false, // true: Allow ES.next (ES6) syntax (ex: `const`) + "moz": false, // true: Allow Mozilla specific syntax (extends and overrides esnext features) + // (ex: `for each`, multiple try/catch, function expression…) + "evil": false, // true: Tolerate use of `eval` and `new Function()` + "expr": true, // true: Tolerate `ExpressionStatement` as Programs + "funcscope": false, // true: Tolerate defining variables inside control statements" + "globalstrict": false, // true: Allow global "use strict" (also enables 'strict') + "iterator": false, // true: Tolerate using the `__iterator__` property + "lastsemic": false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block + "laxbreak": true, // true: Tolerate possibly unsafe line breakings + "laxcomma": true, // true: Tolerate comma-first style coding + "loopfunc": false, // true: Tolerate functions being defined in loops + "multistr": false, // true: Tolerate multi-line strings + "proto": false, // true: Tolerate using the `__proto__` property + "scripturl": false, // true: Tolerate script-targeted URLs + "shadow": false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;` + "sub": false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation + "supernew": false, // true: Tolerate `new function () { ... };` and `new Object;` + "validthis": false, // true: Tolerate using this in a non-constructor function + + // Environments + "browser": true, // Web Browser (window, document, etc) + "couch": false, // CouchDB + "devel": true, // Development/debugging (alert, confirm, etc) + "dojo": false, // Dojo Toolkit + "jquery": true, // jQuery + "mootools": false, // MooTools + "node": false, // Node.js + "nonstandard": false, // Widely adopted globals (escape, unescape, etc) + "prototypejs": false, // Prototype and Scriptaculous + "rhino": false, // Rhino + "worker": false, // Web Workers + "wsh": false, // Windows Scripting Host + "yui": false, // Yahoo User Interface + + // Custom Globals + "globals": { "angular": false, "Modernizr" : true } // additional predefined global variables } From 7c9a75654b722f3d35a4654b1083455f5eef6782 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:44:22 -0600 Subject: [PATCH 08/31] JSCS configuration file JSCS configuration file for Alarm.com --- linters/jscs | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 linters/jscs diff --git a/linters/jscs b/linters/jscs new file mode 100644 index 0000000000..1a992bee84 --- /dev/null +++ b/linters/jscs @@ -0,0 +1,106 @@ +{ + "disallowCommaBeforeLineBreak": null, + "disallowDanglingUnderscores": true, //todo: when we get to newer version, this should include _this + "disallowEmptyBlocks": true, + "disallowFunctionDeclarations": true, + "disallowImplicitTypeConversion": [ "string" ], + "disallowKeywordsOnNewLine": null, + "disallowKeywords": [ "with" ], + "disallowMixedSpacesAndTabs": true, + "disallowMultipleLineBreaks": true, + "disallowMultipleLineStrings": true, + "disallowMultipleVarDecl": true, + "disallowOperatorBeforeLineBreak": true, + "disallowPaddingNewlinesInBlocks": true, + "disallowQuotedKeysInObjects": "allButReserved", + "disallowSpaceAfterBinaryOperators": null, + "disallowSpaceAfterKeywords": [ "for", "while", "do", "switch" ], + "disallowSpaceAfterLineComment": true, + "disallowSpaceAfterObjectKeys": null, + "disallowSpaceAfterPrefixUnaryOperators": true, + "disallowSpaceBeforeBinaryOperators": null, + "disallowSpaceBeforeBlockStatements": null, + "disallowSpaceBeforePostfixUnaryOperators": true, + "disallowSpacesInAnonymousFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "disallowSpacesInConditionalExpression": null, + "disallowSpacesInFunctionDeclaration": null, + "disallowSpacesInFunctionExpression": { + "beforeOpeningRoundBrace": true + }, + "disallowSpacesInNamedFunctionExpression": null, + "disallowSpacesInsideArrayBrackets": null, + "disallowSpacesInsideObjectBrackets": null, + "disallowSpacesInsideParentheses": null, + "disallowTrailingComma": null, + "disallowTrailingWhitespace": true, + "disallowYodaConditions": true, + "maximumLineLength": 160, + "requireAlignedObjectValues": "skipWithFunction", + "requireAnonymousFunctions": true, + "requireBlocksOnNewline": true, + "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", + "requireCapitalizedConstructors": true, + "requireCommaBeforeLineBreak": false, + "requireCurlyBraces": [ + "if", + "else", + "for", + "while", + "do", + "try", + "catch", + "case", + "default" + ], + "requireDollarBeforejQueryAssignment": true, + "requireDotNotation": true, + "requireKeywordsOnNewLine": [ "else" ], + "requireLineBreakAfterVariableAssignment": true, + "requireLineFeedAtFileEnd": true, + "requireMultipleVarDecl": true, + "requireNewlineBeforeBlockStatements": true, + "requireOperatorBeforeLineBreak": false, + "requirePaddingNewlinesInBlocks": true, + "requireParenthesesAroundIIFE": true, + "requireSemicolons": true, + "requireSpaceAfterBinaryOperators": null, + "requireSpaceAfterKeywords": [ "if", "else", "return", "try", "catch" ], + "requireSpaceAfterLineComment": true, + "requireSpaceAfterObjectKeys": false, + "requireSpaceAfterPrefixUnaryOperators": null, + "requireSpaceBeforeBinaryOperators": true, + "requireSpaceBeforeBlockStatements": true, + "requireSpaceBeforePostfixUnaryOperators": null, + "requireSpacesInAnonymousFunctionExpression": { + "beforeOpeningRoundBrace": true + }, + "requireSpacesInCallExpression": false, + "requireSpacesInConditionalExpression": true, + "requireSpacesInForStatement": true, + "requireSpacesInFunctionDeclaration": { + "beforeOpeningRoundBrace": true, + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInFunctionExpression": { + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInNamedFunctionExpression": { + "beforeOpeningRoundBrace": true, + "beforeOpeningCurlyBrace": true + }, + "requireSpacesInsideArrayBrackets": "allButNested", // when we get newer version, this should be false + "requireSpacesInsideObjectBrackets": "allButNested", // when we get newer version, this should be false + "requireSpacesInsideParentheses": "allButNested", // when we get newer version, this should be false + "requireTrailingComma": false, + "safeContextKeyword": ["_this"], + "validateIndentation": 4, + "validateJSDoc": { + "checkParamNames": true, + "requireParamTypes": true + }, + "validateLineBreaks": "LF", + "validateParameterSeparator": ", ", + "validateQuoteMarks": "'" +} From cff913f86c36e04c4e45df2a825a8d344ad0af32 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:44:31 -0600 Subject: [PATCH 09/31] Rename jscs to jscsrc --- linters/{jscs => jscsrc} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename linters/{jscs => jscsrc} (100%) diff --git a/linters/jscs b/linters/jscsrc similarity index 100% rename from linters/jscs rename to linters/jscsrc From 7424151ae782b59e901841c293b4ce93b8c87ede Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:46:47 -0600 Subject: [PATCH 10/31] Create GlobalSettingsStorage.DotSettings ReSharper settings file. --- linters/GlobalSettingsStorage.DotSettings | 101 ++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 linters/GlobalSettingsStorage.DotSettings diff --git a/linters/GlobalSettingsStorage.DotSettings b/linters/GlobalSettingsStorage.DotSettings new file mode 100644 index 0000000000..53e7ef5d4a --- /dev/null +++ b/linters/GlobalSettingsStorage.DotSettings @@ -0,0 +1,101 @@ + + True + True + False + False + True + DO_NOT_SHOW + DO_NOT_SHOW + DO_NOT_SHOW + DO_NOT_SHOW + DO_NOT_SHOW + True + USE_TABS_ONLY + True + 0 + JOIN + True + True + False + False + False + False + True + False + True + WRAP_IF_LONG + WRAP_IF_LONG + False + WRAP_IF_LONG + WRAP_IF_LONG + CHOP_ALWAYS + ALIGN_ALL + NEXT_LINE + ALWAYS_ADD + True + True + ALWAYS_ADD + True + True + True + True + False + True + True + True + True + + + + + False + False + DS + ID + SQL + $object$_On$event$ + <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> + <Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private, Protected" Description="field"><ElementKinds><Kind Name="FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></Policy> + $object$_On$event$ + True + True + True + True + 2 + True + VS + False + 2 + True + True + [-39,19](1024,768) + JavaScript + -606,-134 + True + False + True + Vertical + 271 + 91 + 248 + 491 + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden + NotOverridden From 3136f2b18ff19aa93c03f316a3188e3fd6ed7697 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Mon, 20 Apr 2015 18:48:44 -0600 Subject: [PATCH 11/31] Update README.md --- README.md | 76 +------------------------------------------------------ 1 file changed, 1 insertion(+), 75 deletions(-) diff --git a/README.md b/README.md index 2fa187a87c..a545939815 100644 --- a/README.md +++ b/README.md @@ -1648,76 +1648,6 @@ **[⬆ back to top](#table-of-contents)** -## In the Wild - - This is a list of organizations that are using this style guide. Send us a pull request or open an issue and we'll add you to the list. - - - **Aan Zee**: [AanZee/javascript](https://github.com/AanZee/javascript) - - **Adult Swim**: [adult-swim/javascript](https://github.com/adult-swim/javascript) - - **Airbnb**: [airbnb/javascript](https://github.com/airbnb/javascript) - - **American Insitutes for Research**: [AIRAST/javascript](https://github.com/AIRAST/javascript) - - **Apartmint**: [apartmint/javascript](https://github.com/apartmint/javascript) - - **Avalara**: [avalara/javascript](https://github.com/avalara/javascript) - - **Compass Learning**: [compasslearning/javascript-style-guide](https://github.com/compasslearning/javascript-style-guide) - - **DailyMotion**: [dailymotion/javascript](https://github.com/dailymotion/javascript) - - **Digitpaint** [digitpaint/javascript](https://github.com/digitpaint/javascript) - - **Evernote**: [evernote/javascript-style-guide](https://github.com/evernote/javascript-style-guide) - - **ExactTarget**: [ExactTarget/javascript](https://github.com/ExactTarget/javascript) - - **Flexberry**: [Flexberry/javascript-style-guide](https://github.com/Flexberry/javascript-style-guide) - - **Gawker Media**: [gawkermedia/javascript](https://github.com/gawkermedia/javascript) - - **GeneralElectric**: [GeneralElectric/javascript](https://github.com/GeneralElectric/javascript) - - **GoodData**: [gooddata/gdc-js-style](https://github.com/gooddata/gdc-js-style) - - **Grooveshark**: [grooveshark/javascript](https://github.com/grooveshark/javascript) - - **How About We**: [howaboutwe/javascript](https://github.com/howaboutwe/javascript) - - **InfoJobs**: [InfoJobs/JavaScript-Style-Guide](https://github.com/InfoJobs/JavaScript-Style-Guide) - - **Intent Media**: [intentmedia/javascript](https://github.com/intentmedia/javascript) - - **Jam3**: [Jam3/Javascript-Code-Conventions](https://github.com/Jam3/Javascript-Code-Conventions) - - **Kinetica Solutions**: [kinetica/javascript](https://github.com/kinetica/javascript) - - **Mighty Spring**: [mightyspring/javascript](https://github.com/mightyspring/javascript) - - **MinnPost**: [MinnPost/javascript](https://github.com/MinnPost/javascript) - - **ModCloth**: [modcloth/javascript](https://github.com/modcloth/javascript) - - **Money Advice Service**: [moneyadviceservice/javascript](https://github.com/moneyadviceservice/javascript) - - **Muber**: [muber/javascript](https://github.com/muber/javascript) - - **National Geographic**: [natgeo/javascript](https://github.com/natgeo/javascript) - - **National Park Service**: [nationalparkservice/javascript](https://github.com/nationalparkservice/javascript) - - **Nimbl3**: [nimbl3/javascript](https://github.com/nimbl3/javascript) - - **Nordic Venture Family**: [CodeDistillery/javascript](https://github.com/CodeDistillery/javascript) - - **Orion Health**: [orionhealth/javascript](https://github.com/orionhealth/javascript) - - **Peerby**: [Peerby/javascript](https://github.com/Peerby/javascript) - - **Razorfish**: [razorfish/javascript-style-guide](https://github.com/razorfish/javascript-style-guide) - - **reddit**: [reddit/styleguide/javascript](https://github.com/reddit/styleguide/tree/master/javascript) - - **REI**: [reidev/js-style-guide](https://github.com/reidev/js-style-guide) - - **Ripple**: [ripple/javascript-style-guide](https://github.com/ripple/javascript-style-guide) - - **SeekingAlpha**: [seekingalpha/javascript-style-guide](https://github.com/seekingalpha/javascript-style-guide) - - **Shutterfly**: [shutterfly/javascript](https://github.com/shutterfly/javascript) - - **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/javascript) - - **Target**: [target/javascript](https://github.com/target/javascript) - - **TheLadders**: [TheLadders/javascript](https://github.com/TheLadders/javascript) - - **T4R Technology**: [T4R-Technology/javascript](https://github.com/T4R-Technology/javascript) - - **Userify**: [userify/javascript](https://github.com/userify/javascript) - - **VoxFeed**: [VoxFeed/javascript-style-guide](https://github.com/VoxFeed/javascript-style-guide) - - **Weggo**: [Weggo/javascript](https://github.com/Weggo/javascript) - - **Zillow**: [zillow/javascript](https://github.com/zillow/javascript) - - **ZocDoc**: [ZocDoc/javascript](https://github.com/ZocDoc/javascript) - -## Translation - - This style guide is also available in other languages: - - - ![br](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Brazil.png) **Brazilian Portuguese**: [armoucar/javascript-style-guide](https://github.com/armoucar/javascript-style-guide) - - ![bg](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Bulgaria.png) **Bulgarian**: [borislavvv/javascript](https://github.com/borislavvv/javascript) - - ![ca](https://raw.githubusercontent.com/fpmweb/javascript-style-guide/master/img/catala.png) **Catalan**: [fpmweb/javascript-style-guide](https://github.com/fpmweb/javascript-style-guide) - - ![tw](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Taiwan.png) **Chinese(Traditional)**: [jigsawye/javascript](https://github.com/jigsawye/javascript) - - ![cn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/China.png) **Chinese(Simplified)**: [adamlu/javascript-style-guide](https://github.com/adamlu/javascript-style-guide) - - ![fr](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/France.png) **French**: [nmussy/javascript-style-guide](https://github.com/nmussy/javascript-style-guide) - - ![de](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Germany.png) **German**: [timofurrer/javascript-style-guide](https://github.com/timofurrer/javascript-style-guide) - - ![it](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Italy.png) **Italian**: [sinkswim/javascript-style-guide](https://github.com/sinkswim/javascript-style-guide) - - ![jp](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Japan.png) **Japanese**: [mitsuruog/javacript-style-guide](https://github.com/mitsuruog/javacript-style-guide) - - ![kr](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/South-Korea.png) **Korean**: [tipjs/javascript-style-guide](https://github.com/tipjs/javascript-style-guide) - - ![pl](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Poland.png) **Polish**: [mjurczyk/javascript](https://github.com/mjurczyk/javascript) - - ![ru](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Russia.png) **Russian**: [uprock/javascript](https://github.com/uprock/javascript) - - ![es](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Spain.png) **Spanish**: [paolocarrasco/javascript-style-guide](https://github.com/paolocarrasco/javascript-style-guide) - - ![th](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Thailand.png) **Thai**: [lvarayut/javascript-style-guide](https://github.com/lvarayut/javascript-style-guide) ## The JavaScript Style Guide Guide @@ -1727,16 +1657,12 @@ - Find us on [gitter](https://gitter.im/airbnb/javascript). -## Contributors - - - [View Contributors](https://github.com/airbnb/javascript/graphs/contributors) - ## License (The MIT License) -Copyright (c) 2014 Airbnb +Copyright (c) 2015 Alarm.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the From 4a74322cde8b27f497856b3f2fd6f06aa41093b4 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 10:45:28 -0600 Subject: [PATCH 12/31] Update jscsrc --- linters/jscsrc | 99 ++++++++++++++++++++++++++++++++------------------ 1 file changed, 63 insertions(+), 36 deletions(-) diff --git a/linters/jscsrc b/linters/jscsrc index 1a992bee84..d4771c2abb 100644 --- a/linters/jscsrc +++ b/linters/jscsrc @@ -1,8 +1,12 @@ { + /** + * Adapted from https://github.com/jscs-dev/node-jscs/blob/master/presets/airbnb.json + */ + "disallowCommaBeforeLineBreak": null, "disallowDanglingUnderscores": true, //todo: when we get to newer version, this should include _this "disallowEmptyBlocks": true, - "disallowFunctionDeclarations": true, + "disallowFunctionDeclarations": true, "disallowImplicitTypeConversion": [ "string" ], "disallowKeywordsOnNewLine": null, "disallowKeywords": [ "with" ], @@ -10,63 +14,85 @@ "disallowMultipleLineBreaks": true, "disallowMultipleLineStrings": true, "disallowMultipleVarDecl": true, - "disallowOperatorBeforeLineBreak": true, + "disallowOperatorBeforeLineBreak": true, "disallowPaddingNewlinesInBlocks": true, "disallowQuotedKeysInObjects": "allButReserved", "disallowSpaceAfterBinaryOperators": null, "disallowSpaceAfterKeywords": [ "for", "while", "do", "switch" ], "disallowSpaceAfterLineComment": true, - "disallowSpaceAfterObjectKeys": null, + "disallowSpaceAfterObjectKeys": true, "disallowSpaceAfterPrefixUnaryOperators": true, - "disallowSpaceBeforeBinaryOperators": null, + "disallowSpaceBeforeBinaryOperators": [ + "," + ], "disallowSpaceBeforeBlockStatements": null, "disallowSpaceBeforePostfixUnaryOperators": true, "disallowSpacesInAnonymousFunctionExpression": { - "beforeOpeningCurlyBrace": true + "beforeOpeningRoundBrace": true }, "disallowSpacesInConditionalExpression": null, - "disallowSpacesInFunctionDeclaration": null, + "disallowSpacesInFunctionDeclaration": { + "beforeOpeningRoundBrace": true + }, "disallowSpacesInFunctionExpression": { "beforeOpeningRoundBrace": true }, - "disallowSpacesInNamedFunctionExpression": null, - "disallowSpacesInsideArrayBrackets": null, + "disallowSpacesInNamedFunctionExpression": { + "beforeOpeningRoundBrace": true + }, + "disallowSpacesInsideArrayBrackets": true, "disallowSpacesInsideObjectBrackets": null, - "disallowSpacesInsideParentheses": null, - "disallowTrailingComma": null, + "disallowSpacesInsideParentheses": true, + "disallowTrailingComma": true, "disallowTrailingWhitespace": true, "disallowYodaConditions": true, "maximumLineLength": 160, "requireAlignedObjectValues": "skipWithFunction", - "requireAnonymousFunctions": true, - "requireBlocksOnNewline": true, - "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", + "requireAnonymousFunctions": true, + "requireBlocksOnNewline": 1, //true, + "requireCamelCaseOrUpperCaseIdentifiers": true, // "ignoreProperties", "requireCapitalizedConstructors": true, - "requireCommaBeforeLineBreak": false, + "requireCommaBeforeLineBreak": true, "requireCurlyBraces": [ - "if", - "else", - "for", - "while", - "do", - "try", - "catch", - "case", - "default" - ], - "requireDollarBeforejQueryAssignment": true, + "if", + "else", + "for", + "while", + "do", + "try", + "catch", + "case", + "default" + ], + "requireDollarBeforejQueryAssignment": true, "requireDotNotation": true, "requireKeywordsOnNewLine": [ "else" ], - "requireLineBreakAfterVariableAssignment": true, + "requireLineBreakAfterVariableAssignment": true, "requireLineFeedAtFileEnd": true, "requireMultipleVarDecl": true, - "requireNewlineBeforeBlockStatements": true, + "requireNewlineBeforeBlockStatements": true, "requireOperatorBeforeLineBreak": false, + "requirePaddingNewLinesAfterBlocks": true, "requirePaddingNewlinesInBlocks": true, + "requirePaddingNewLinesBeforeLineComments": { + "allExcept": "firstAfterCurly" + }, "requireParenthesesAroundIIFE": true, - "requireSemicolons": true, - "requireSpaceAfterBinaryOperators": null, - "requireSpaceAfterKeywords": [ "if", "else", "return", "try", "catch" ], + "requireSemicolons": true, + "requireSpaceAfterBinaryOperators": true, + "requireSpaceAfterKeywords": [ + "if", + "else", + "for", + "while", + "do", + "switch", + "case", + "return", + "try", + "catch", + "typeof" + ], "requireSpaceAfterLineComment": true, "requireSpaceAfterObjectKeys": false, "requireSpaceAfterPrefixUnaryOperators": null, @@ -76,9 +102,10 @@ "requireSpacesInAnonymousFunctionExpression": { "beforeOpeningRoundBrace": true }, - "requireSpacesInCallExpression": false, + "requireSpaceBetweenArguments": true, + "requireSpacesInCallExpression": false, "requireSpacesInConditionalExpression": true, - "requireSpacesInForStatement": true, + "requireSpacesInForStatement": true, "requireSpacesInFunctionDeclaration": { "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true @@ -90,11 +117,11 @@ "beforeOpeningRoundBrace": true, "beforeOpeningCurlyBrace": true }, - "requireSpacesInsideArrayBrackets": "allButNested", // when we get newer version, this should be false - "requireSpacesInsideObjectBrackets": "allButNested", // when we get newer version, this should be false - "requireSpacesInsideParentheses": "allButNested", // when we get newer version, this should be false + "requireSpacesInsideArrayBrackets": "allButNested", // when we get newer version, this should be false + "requireSpacesInsideObjectBrackets": "allButNested", // when we get newer version, this should be false + "requireSpacesInsideParentheses": "allButNested", // when we get newer version, this should be false "requireTrailingComma": false, - "safeContextKeyword": ["_this"], + "safeContextKeyword": "_this", "validateIndentation": 4, "validateJSDoc": { "checkParamNames": true, From 573645894a5a1bf784c35b6f154559715102a905 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 10:46:00 -0600 Subject: [PATCH 13/31] Update SublimeLinter.sublime-settings --- linters/SublimeLinter/SublimeLinter.sublime-settings | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linters/SublimeLinter/SublimeLinter.sublime-settings b/linters/SublimeLinter/SublimeLinter.sublime-settings index 12360f3f1c..f1d1aa2130 100644 --- a/linters/SublimeLinter/SublimeLinter.sublime-settings +++ b/linters/SublimeLinter/SublimeLinter.sublime-settings @@ -44,7 +44,7 @@ "eqnull": true, // Enforce tab width of 2 spaces. - "indent": 2, + "indent": 4, // Prohibit use of a variable before it is defined. "latedef": true, @@ -65,7 +65,7 @@ "unused": true, // Enforce line length to 80 characters - "maxlen": 80, + "maxlen": 160, // Enforce placing 'use strict' at the top function scope "strict": true From 9f18ec1e5bcc845b04cb417fb742d8df195a6bb1 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:13:38 -0600 Subject: [PATCH 14/31] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a545939815..4ca6259c44 100644 --- a/README.md +++ b/README.md @@ -965,24 +965,24 @@ ## Commas - - Leading commas: **Yes and no. Debate still going on. Personally prefer comma at the beginning** + - Leading commas: **Nope.** ```javascript - // not bad + // bad var story = [ once , upon , aTime ]; - // not bad + // good var story = [ once, upon, aTime ]; - // not bad + // bad var hero = { firstName: 'Bob' , lastName: 'Parr' @@ -990,7 +990,7 @@ , superPower: 'strength' }; - // not bad + // good var hero = { firstName: 'Bob', lastName: 'Parr', From 2666a226335fa684deed421b57909cf5eb4a5941 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:14:16 -0600 Subject: [PATCH 15/31] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 4ca6259c44..f02e386303 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,8 @@ 1. [Performance](#performance) 1. [Resources](#resources) 1. [In the Wild](#in-the-wild) - 1. [Translation](#translation) 1. [The JavaScript Style Guide Guide](#the-javascript-style-guide-guide) 1. [Chat With Us About Javascript](#chat-with-us-about-javascript) - 1. [Contributors](#contributors) 1. [License](#license) ## Types From cb373a644d24029f57b52d5223c3b41a0e220e1a Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:16:50 -0600 Subject: [PATCH 16/31] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index f02e386303..6db9eb6d76 100644 --- a/README.md +++ b/README.md @@ -627,6 +627,16 @@ ``` - For more information see [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108) by Angus Croll. + - When having a multi-line if statement, start the line with an operator; this is a more readable style + ```javascript + if (a === 1 + && b === 3 + && c !== 7) { + // true + return true; + } + ``` + **[⬆ back to top](#table-of-contents)** From e2925c58766d23a9d826906f23d6cd01c8a1ef62 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:20:37 -0600 Subject: [PATCH 17/31] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6db9eb6d76..dc7aa12e1a 100644 --- a/README.md +++ b/README.md @@ -628,13 +628,15 @@ - For more information see [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108) by Angus Croll. - When having a multi-line if statement, start the line with an operator; this is a more readable style + ```javascript + if (a === 1 - && b === 3 - && c !== 7) { - // true - return true; + && b === 2 + && c !== 3) { + // ...stuff... } + ``` From 1665ba77210cd6004d5167edf9dfa6080ce93226 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:20:57 -0600 Subject: [PATCH 18/31] Update jshintrc --- linters/jshintrc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/linters/jshintrc b/linters/jshintrc index 0080395de1..79665f0cb6 100644 --- a/linters/jshintrc +++ b/linters/jshintrc @@ -53,7 +53,7 @@ "iterator": false, // true: Tolerate using the `__iterator__` property "lastsemic": false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block "laxbreak": true, // true: Tolerate possibly unsafe line breakings - "laxcomma": true, // true: Tolerate comma-first style coding + "laxcomma": false, // true: Tolerate comma-first style coding "loopfunc": false, // true: Tolerate functions being defined in loops "multistr": false, // true: Tolerate multi-line strings "proto": false, // true: Tolerate using the `__proto__` property @@ -79,5 +79,10 @@ "yui": false, // Yahoo User Interface // Custom Globals - "globals": { "angular": false, "Modernizr" : true } // additional predefined global variables + "globals": { + "angular": false, + "Modernizr": true, + // we need to move this to translations, but keeping this here for now + "textErrorGenericResource": true + } // additional predefined global variables } From 3a9cef0913d0e1576a6dd2495da3aa25494d6ba0 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:51:47 -0600 Subject: [PATCH 19/31] Update jscsrc --- linters/jscsrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linters/jscsrc b/linters/jscsrc index d4771c2abb..eca1e4023a 100644 --- a/linters/jscsrc +++ b/linters/jscsrc @@ -100,21 +100,21 @@ "requireSpaceBeforeBlockStatements": true, "requireSpaceBeforePostfixUnaryOperators": null, "requireSpacesInAnonymousFunctionExpression": { - "beforeOpeningRoundBrace": true + "beforeOpeningRoundBrace": false }, "requireSpaceBetweenArguments": true, "requireSpacesInCallExpression": false, "requireSpacesInConditionalExpression": true, "requireSpacesInForStatement": true, "requireSpacesInFunctionDeclaration": { - "beforeOpeningRoundBrace": true, + "beforeOpeningRoundBrace": false, "beforeOpeningCurlyBrace": true }, "requireSpacesInFunctionExpression": { "beforeOpeningCurlyBrace": true }, "requireSpacesInNamedFunctionExpression": { - "beforeOpeningRoundBrace": true, + "beforeOpeningRoundBrace": false, "beforeOpeningCurlyBrace": true }, "requireSpacesInsideArrayBrackets": "allButNested", // when we get newer version, this should be false From 6601122ff189b91c8563b05cd0b6e4bbf4530f5f Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 11:52:20 -0600 Subject: [PATCH 20/31] Update jscsrc --- linters/jscsrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linters/jscsrc b/linters/jscsrc index eca1e4023a..2299569270 100644 --- a/linters/jscsrc +++ b/linters/jscsrc @@ -1,7 +1,5 @@ { - /** - * Adapted from https://github.com/jscs-dev/node-jscs/blob/master/presets/airbnb.json - */ + // Adapted from https://github.com/jscs-dev/node-jscs/blob/master/presets/airbnb.json "disallowCommaBeforeLineBreak": null, "disallowDanglingUnderscores": true, //todo: when we get to newer version, this should include _this From 1ffebc31582743ff89010cd49ad59bee476a2a38 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 12:12:58 -0600 Subject: [PATCH 21/31] Update jscsrc --- linters/jscsrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linters/jscsrc b/linters/jscsrc index 2299569270..4fa8a91bbe 100644 --- a/linters/jscsrc +++ b/linters/jscsrc @@ -20,9 +20,7 @@ "disallowSpaceAfterLineComment": true, "disallowSpaceAfterObjectKeys": true, "disallowSpaceAfterPrefixUnaryOperators": true, - "disallowSpaceBeforeBinaryOperators": [ - "," - ], + "disallowSpaceBeforeBinaryOperators": null, // when we get newer version, we want it to be [","], "disallowSpaceBeforeBlockStatements": null, "disallowSpaceBeforePostfixUnaryOperators": true, "disallowSpacesInAnonymousFunctionExpression": { From acbe3d779e31959290002185600e19fcd9766c9f Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 12:14:00 -0600 Subject: [PATCH 22/31] Create WebEssentials-Settings.json Web Essentials settings --- linters/WebEssentials-Settings.json | 184 ++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 linters/WebEssentials-Settings.json diff --git a/linters/WebEssentials-Settings.json b/linters/WebEssentials-Settings.json new file mode 100644 index 0000000000..6d7312fe4c --- /dev/null +++ b/linters/WebEssentials-Settings.json @@ -0,0 +1,184 @@ +{ + "BrowserLink": { + "CssIgnorePatterns": "bootstrap*; reset.css; normalize.css; jquery*; toastr*; foundation*; animate*; inuit*; elements*; ratchet*; hint*; flat-ui*; 960*; skeleton*", + "EnableMenu": true, + "EnablePixelPushing": true, + "ShowMenu": true + }, + "CodeGen": { + "AddTypeScriptReferencePath": true, + "CamelCaseEnumerationValues": false, + "CamelCasePropertyNames": true, + "CamelCaseTypeNames": false + }, + "CoffeeScript": { + "CompileOnBuild": false, + "CompileOnSave": true, + "GenerateSourceMaps": true, + "LintOnBuild": false, + "LintOnSave": true, + "LintResultLocation": "Message", + "MinifyInPlace": false, + "OutputDirectory": null, + "ProcessSourceMapsForEditorEnhancements": true, + "ShowPreviewPane": true, + "WrapClosure": true + }, + "Css": { + "AdjustRelativePaths": true, + "AutoMinify": false, + "Autoprefix": false, + "AutoprefixerBrowsers": null, + "GenerateRtlSourceMaps": true, + "GzipMinifiedFiles": false, + "MakeMinified": true, + "OutputDirectory": null, + "RtlCss": false, + "RunOnBuild": false, + "ShowBrowserTooltip": true, + "ShowInitialInherit": false, + "ShowUnsupported": true, + "SyncBase64ImageValues": true, + "SyncVendorValues": true, + "ValidateEmbedImages": true, + "ValidateStarSelector": true, + "ValidateVendorSpecifics": true, + "ValidateZeroUnit": true, + "ValidationLocation": "Messages" + }, + "General": { + "AllMessagesToOutputWindow": false, + "KeepImportantComments": true, + "ShowWEIgnoreLogs": true, + "SvgPreviewPane": true + }, + "Handlebars": { + "CompileOnBuild": false, + "CompileOnSave": true, + "MinifyInPlace": false, + "OutputDirectory": null + }, + "Html": { + "AttributeQuotesRemovalMode": "KeepQuotes", + "AutoMinify": false, + "CustomAngularDirectiveList": null, + "EnableAngularValidation": true, + "EnableBootstrapValidation": true, + "EnableEnterFormat": true, + "EnableFoundationValidation": true, + "GzipMinifiedFiles": false, + "ImageDropFormats": [ + { + "HtmlFormat": "\"\"", + "Name": "Simple Image Tag" + }, + { + "HtmlFormat": "
\"\"
", + "Name": "Enclosed in Div" + }, + { + "HtmlFormat": "
  • \"\"
  • ", + "Name": "Enclosed as List Item" + }, + { + "HtmlFormat": "
    ", + "Name": "Inline CSS" + } + ], + "MakeMinified": true, + "MinifyAngularBindingExpressions": false, + "MinifyKnockoutBindingExpressions": false, + "OutputDirectory": null, + "ProcessableScriptTypeList": null, + "RunOnBuild": false + }, + "JavaScript": { + "AutoMinify": false, + "BlockCommentCompletion": true, + "EvalTreatment": "MakeImmediateSafe", + "GenerateSourceMaps": true, + "GzipMinifiedFiles": false, + "LintOnBuild": false, + "LintOnSave": true, + "LintResultLocation": "Error", + "MakeMinified": true, + "OutputDirectory": null, + "RootDirectory": "/Scripts/", + "RunOnBuild": false, + "TermSemicolons": true + }, + "Less": { + "CompileOnBuild": false, + "CompileOnSave": true, + "EnableChainCompilation": true, + "GenerateSourceMaps": true, + "MinifyInPlace": false, + "OutputDirectory": null, + "ProcessSourceMapsForEditorEnhancements": true, + "ShowPreviewPane": true, + "StrictMath": false + }, + "LiveScript": { + "CompileOnBuild": false, + "CompileOnSave": true, + "GenerateSourceMaps": true, + "MinifyInPlace": false, + "OutputDirectory": null, + "ProcessSourceMapsForEditorEnhancements": true, + "ShowPreviewPane": true, + "WrapClosure": true + }, + "Markdown": { + "AutoHyperlink": false, + "AutoNewLines": false, + "CompileOnBuild": false, + "CompileOnSave": true, + "EncodeProblemUrlCharacters": false, + "GenerateXHTML": true, + "LinkEmails": false, + "MinifyInPlace": false, + "OutputDirectory": null, + "ShowPreviewPane": true, + "StrictBoldItalic": false + }, + "Scss": { + "CompileOnBuild": false, + "CompileOnSave": true, + "EnableChainCompilation": true, + "GenerateSourceMaps": true, + "MinifyInPlace": false, + "NumberPrecision": 5, + "OutputDirectory": null, + "OutputStyle": "Expanded", + "ProcessSourceMapsForEditorEnhancements": true, + "ShowPreviewPane": true, + "UseRubyRuntime": false + }, + "Sprite": { + "CssOutputDirectory": null, + "IsVertical": true, + "LessOutputDirectory": null, + "Margin": 1, + "Optimize": true, + "OutputDirectory": null, + "RunOnBuild": false, + "ScssOutputDirectory": null, + "UseAbsoluteUrl": false, + "UseFullPathForIdentifierName": true + }, + "SweetJs": { + "CompileOnBuild": false, + "CompileOnSave": true, + "GenerateSourceMaps": true, + "MinifyInPlace": false, + "OutputDirectory": null, + "ProcessSourceMapsForEditorEnhancements": true, + "ShowPreviewPane": true + }, + "TypeScript": { + "LintOnBuild": false, + "LintOnSave": true, + "LintResultLocation": "Message", + "ShowPreviewPane": true + } +} From 88275f725322053e867c27881cd83b230de82a44 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 12:16:14 -0600 Subject: [PATCH 23/31] Delete GlobalSettingsStorage.DotSettings --- linters/GlobalSettingsStorage.DotSettings | 101 ---------------------- 1 file changed, 101 deletions(-) delete mode 100644 linters/GlobalSettingsStorage.DotSettings diff --git a/linters/GlobalSettingsStorage.DotSettings b/linters/GlobalSettingsStorage.DotSettings deleted file mode 100644 index 53e7ef5d4a..0000000000 --- a/linters/GlobalSettingsStorage.DotSettings +++ /dev/null @@ -1,101 +0,0 @@ - - True - True - False - False - True - DO_NOT_SHOW - DO_NOT_SHOW - DO_NOT_SHOW - DO_NOT_SHOW - DO_NOT_SHOW - True - USE_TABS_ONLY - True - 0 - JOIN - True - True - False - False - False - False - True - False - True - WRAP_IF_LONG - WRAP_IF_LONG - False - WRAP_IF_LONG - WRAP_IF_LONG - CHOP_ALWAYS - ALIGN_ALL - NEXT_LINE - ALWAYS_ADD - True - True - ALWAYS_ADD - True - True - True - True - False - True - True - True - True - - - - - False - False - DS - ID - SQL - $object$_On$event$ - <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AA_BB" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> - <Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /> - <Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private, Protected" Description="field"><ElementKinds><Kind Name="FIELD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></Policy> - $object$_On$event$ - True - True - True - True - 2 - True - VS - False - 2 - True - True - [-39,19](1024,768) - JavaScript - -606,-134 - True - False - True - Vertical - 271 - 91 - 248 - 491 - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden - NotOverridden From 641be1b1998df9feb3d15b7f664e3bd97078b896 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 12:17:08 -0600 Subject: [PATCH 24/31] Create alarm-svn.sln.DotSettings.user Resharper settings --- linters/alarm-svn.sln.DotSettings.user | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 linters/alarm-svn.sln.DotSettings.user diff --git a/linters/alarm-svn.sln.DotSettings.user b/linters/alarm-svn.sln.DotSettings.user new file mode 100644 index 0000000000..cd6a4d79db --- /dev/null +++ b/linters/alarm-svn.sln.DotSettings.user @@ -0,0 +1,12 @@ + + True + + + + + + False + + + <Session><Elements><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AdjustVideoQuotaTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AdjustVideoQuotaTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AffiliateTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AffiliateTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AgreeCLSTermsConditionsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AgreeCLSTermsConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVAOutputTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmVAOutputTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBadMailTest.BadMailTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBadMailTest.BadMailTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.BaseMessageProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.BaseMessageProcessorTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.BasePanelTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.BasePanelTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BillingActionTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BillingActionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CameraServerBusyTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CameraServerBusyTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CasetaTest.CasetaDeviceUtilsTests" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CasetaTest.CasetaDeviceUtilsTests" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ChangeEmailPreferencesTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.ChangeEmailPreferencesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLogoTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLogoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSupportTicketVisibilityTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSupportTicketVisibilityTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.CommercialSensorReportingCommandTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.CommercialSensorReportingCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ComparisonUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.ComparisonUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmSocketListenerTest.ConnectedClientTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmSocketListenerTest.ConnectedClientTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ConnectedKeySafeTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ConnectedKeySafeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactInstanceListTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactInstanceListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateCustomerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateCustomerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateRMATest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.Globalization.CultureManagerTests" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.Globalization.CultureManagerTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.WebServicesTest.CustomerManagementTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.WebServicesTest.CustomerManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CustomerSiteLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CustomerSiteLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.DashboardTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.DashboardTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeactivateUserTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeactivateUserTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.DealerSiteLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.DealerSiteLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.DelayedCommandRuleTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.DelayedCommandRuleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.DeviceListProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.DeviceListProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.EditLocationTest.EditLocationTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.EditLocationTest.EditLocationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.EnterpriseTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.EnterpriseTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.ExpiringScheduledCommandsTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.ExpiringScheduledCommandsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GenerateCustomerLoginTokenTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GenerateCustomerLoginTokenTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.PublicApi.Video.GetRtmpStreamInfoTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.PublicApi.Video.GetRtmpStreamInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.IPMaskTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeThermostatTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.InitializeThermostatTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeZwaveLockCommandTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.InitializeZwaveLockCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LatchkeyManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LatchkeyManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AdminDotNetTest.LeadCustomerAssociationTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AdminDotNetTest.LeadCustomerAssociationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LightScheduleActionTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.LightScheduleActionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.LocksTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.LocksTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.LoginAsUserTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.LoginAsUserTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LongMessageTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.LongMessageTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.WebServicesTest.ManufacturingTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.WebServicesTest.ManufacturingTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.MergeLoginTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.MergeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ModemCommandsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.ModemCommandsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.NXSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.NXSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.NeoTests" type="MsTestTestClassElement" TypeName="AlarmUnitTest.NeoTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PackageTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PackageTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" type="MsTestTestClassElement" TypeName="AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.PointCentralTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.PointCentralTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PointCentral.PointCommandsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PointCentral.PointCommandsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetCommandCountTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetCommandCountTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.SchlageLockTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.SchlageLockTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.SensorNotOpenedManagerTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.SensorNotOpenedManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.SensorOpenCloseRuleTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.SensorOpenCloseRuleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ThirdPartyDeviceProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.ThirdPartyDeviceProcessorTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TimeZoneConverterTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.TimeZoneConverterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.TransferredToAnotherDealerTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.TransferredToAnotherDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TwoGigV112Test" type="MsTestTestClassElement" TypeName="AlarmUnitTest.TwoGigV112Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.TwoGigV113Test" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.TwoGigV113Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TwoGigV15Test" type="MsTestTestClassElement" TypeName="AlarmUnitTest.TwoGigV15Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitEventThermostatModeTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitEventThermostatModeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitOpenAndCloseInfoTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitOpenAndCloseInfoTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VideoTests" type="MsTestTestClassElement" TypeName="AlarmUnitTest.VideoTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.RimDotNetTest.VmailFormatTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.RimDotNetTest.VmailFormatTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.XT16PanelSettingsTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.XT16PanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" type="MsTestTestClassElement" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ZWaveThermostatScheduleTest" type="MsTestTestClassElement" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ZWaveThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointAssignSlotTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointAssignSlotTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointDeleteContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointDeleteContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointDeleteExpiredSlotTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointDeleteExpiredSlotTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointEditUserTypeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointEditUserTypeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointFilterSlotsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointFilterSlotsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointPreviousMaskTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointPreviousMaskTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointRemoveAllTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointRemoveAllTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointSetExpiringScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointSetExpiringScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointSetTimeOfWeekScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointSetTimeOfWeekScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointSlotNumbersTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointSlotNumbersTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointUnassignSlotTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointUnassignSlotTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointUpdateAccessTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointUpdateAccessTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AccessPointUpdateCodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AccessPointUpdateCodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointUpdateCodeUnreservePreviousPinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointUpdateCodeUnreservePreviousPinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest.AccessPointUserSendWelcomeEmailTest" ParentId="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestMethodElement" MethodName="AccessPointUserSendWelcomeEmailTest" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointUtilEncryptCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointUtilEncryptCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointUtilGetTextForUserTypeContactIdTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointUtilGetTextForUserTypeContactIdTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointUtilValidateProposedCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointUtilValidateProposedCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.AccessPointValidateCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="AccessPointValidateCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest.AccountLockedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" type="MsTestTestMethodElement" MethodName="AccountLockedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.ActionDescriptionFromDataRowTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="ActionDescriptionFromDataRowTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.ActivateAccountFailureTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="ActivateAccountFailureTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.ActivateAccountSuccessTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="ActivateAccountSuccessTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.ActivateModemTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="ActivateModemTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.ActivateModemWhenReceivedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="ActivateModemWhenReceivedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.AddAddOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="AddAddOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.AddAdminLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="AddAdminLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddAlarmNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddAlarmNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest.AddAndDeleteHalfArmingScheduleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" type="MsTestTestMethodElement" MethodName="AddAndDeleteHalfArmingScheduleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.AddAndEditNewLoginWithRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="AddAndEditNewLoginWithRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest.AddArmingSchedulePartitionsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" type="MsTestTestMethodElement" MethodName="AddArmingSchedulePartitionsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest.AddArmingScheduleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" type="MsTestTestMethodElement" MethodName="AddArmingScheduleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.AddArmingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="AddArmingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.AddBIUserTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="AddBIUserTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.AddBillingInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="AddBillingInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.AddCSEventGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="AddCSEventGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.AddCSIdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="AddCSIdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.AddCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="AddCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.AddCaptureReasonsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="AddCaptureReasonsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CasetaTest.CasetaDeviceUtilsTests.AddCasetaSmartBridgeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CasetaTest.CasetaDeviceUtilsTests" type="MsTestTestMethodElement" MethodName="AddCasetaSmartBridgeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CasetaTest.CasetaDeviceUtilsTests" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.AddChecksumTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="AddChecksumTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddCommercialActivityReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddCommercialActivityReportTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.AddContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="AddContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.AddContactAndCodeExTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="AddContactAndCodeExTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.AddContactLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="AddContactLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.AddContactPushDeviceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="AddContactPushDeviceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.AddContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="AddContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.AddContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="AddContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.AddContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="AddContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.AddCountryCodeToPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="AddCountryCodeToPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.AddCsContactTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="AddCsContactTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.AddCustomerManagedAddOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="AddCustomerManagedAddOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.AddCustomerRepContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="AddCustomerRepContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.AddCustomerRepTroubleReportEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="AddCustomerRepTroubleReportEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.AddDailyViewTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="AddDailyViewTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest.AddEnergyGoalTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" type="MsTestTestMethodElement" MethodName="AddEnergyGoalTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.AddFamilyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="AddFamilyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddLightRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddLightRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddLightScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddLightScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddLightTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddLightTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddLocationSummaryReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddLocationSummaryReportTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.AddLocationsTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="AddLocationsTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddLockRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddLockRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.AddLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="AddLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLogoTest.AddLogoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLogoTest" type="MsTestTestMethodElement" MethodName="AddLogoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLogoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.AddLutronPingingToUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="AddLutronPingingToUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.AddMergedLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="AddMergedLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.AddMiscPartToRMATest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="AddMiscPartToRMATest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.AddMonitoringToPingerGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="AddMonitoringToPingerGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.AddNetworkReceiverTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="AddNetworkReceiverTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewArmingEventNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewArmingEventNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewArmingEventNotificationTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewArmingEventNotificationTest2" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewArmingReminderNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewArmingReminderNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewArmingSupervisionFaultNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewArmingSupervisionFaultNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewDisarmingSupervisionFaultNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewDisarmingSupervisionFaultNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewInactivityNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewInactivityNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddNewNoShowAlertNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddNewNoShowAlertNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.AddOutGoingPingingToUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="AddOutGoingPingingToUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.AddPackageToPricingColumnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="AddPackageToPricingColumnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest.AddPart" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" type="MsTestTestMethodElement" MethodName="AddPart" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.AddPhoneTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="AddPhoneTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.AddPingingToUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="AddPingingToUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.AddPushDeviceTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="AddPushDeviceTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest.AddRadioTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" type="MsTestTestMethodElement" MethodName="AddRadioTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.AddRearmingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="AddRearmingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddSecurityRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddSecurityRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.AddSensorCommandTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="AddSensorCommandTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSensorLeftClosedNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSensorLeftClosedNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSensorLeftOpenNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSensorLeftOpenNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSensorLeftOpenOldNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSensorLeftOpenOldNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddSensorLightInteractionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddSensorLightInteractionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSensorNotOpenedNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSensorNotOpenedNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.AddSequenceNumberToCommandTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="AddSequenceNumberToCommandTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.AddSerialsToRMATest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="AddSerialsToRMATest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSystemEventNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSystemEventNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.AddSystemHealthReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="AddSystemHealthReportTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.AddTwoWayPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="AddTwoWayPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.AddUnitToSystemGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="AddUnitToSystemGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.AddUpdateEmailTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="AddUpdateEmailTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.AddUpdateMobilePhoneTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="AddUpdateMobilePhoneTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.AddUpdatePhoneTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="AddUpdatePhoneTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.AddZWaveAutomationEventTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="AddZWaveAutomationEventTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest.AddedRepRoleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestMethodElement" MethodName="AddedRepRoleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.AdditionalEmailsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="AdditionalEmailsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.AdministratorsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="AdministratorsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AgreeCLSTermsConditionsTest.AgreeTermsConditionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AgreeCLSTermsConditionsTest" type="MsTestTestMethodElement" MethodName="AgreeTermsConditionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AgreeCLSTermsConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest.AgreeToAgreement" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" type="MsTestTestMethodElement" MethodName="AgreeToAgreement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest.AgreeToOfferTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" type="MsTestTestMethodElement" MethodName="AgreeToOfferTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.AjaxUserFilterValuesTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="AjaxUserFilterValuesTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest.AllDirectRolesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" type="MsTestTestMethodElement" MethodName="AllDirectRolesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest.AllIndirectRolesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" type="MsTestTestMethodElement" MethodName="AllIndirectRolesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest.AnalyzeEventsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" type="MsTestTestMethodElement" MethodName="AnalyzeEventsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.AppliedCustomCreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="AppliedCustomCreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.AppliedCustomPaymentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="AppliedCustomPaymentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.AppliedPaymentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="AppliedPaymentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ApplyBiddingAndFilteringTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ApplyBiddingAndFilteringTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.ApplyCreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="ApplyCreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ApplyDownloaderTemplateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ApplyDownloaderTemplateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest.ApprovePart" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" type="MsTestTestMethodElement" MethodName="ApprovePart" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.ArmingReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="ArmingReportTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.ArmingSupervisionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="ArmingSupervisionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.LoginAsUserTest.AsUserTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.LoginAsUserTest" type="MsTestTestMethodElement" MethodName="AsUserTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.LoginAsUserTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.AssignClientTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="AssignClientTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest.AssignPinsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" type="MsTestTestMethodElement" MethodName="AssignPinsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.AssociateWithLeadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="AssociateWithLeadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.AttachPricingColumnToDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="AttachPricingColumnToDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest.AuthenticateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestMethodElement" MethodName="AuthenticateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.AutoChargeCCTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="AutoChargeCCTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest.AutoCompleteTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="AutoCompleteTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.AutoConfigModeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="AutoConfigModeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest.AutoFlagLeadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" type="MsTestTestMethodElement" MethodName="AutoFlagLeadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.AutoProcessOrdersTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="AutoProcessOrdersTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest.AutoRearmPartitionsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" type="MsTestTestMethodElement" MethodName="AutoRearmPartitionsTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest.AutoRearmTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" type="MsTestTestMethodElement" MethodName="AutoRearmTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.AutoRearmScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.AvailableRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="AvailableRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.BIUserCreatedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="BIUserCreatedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest.BackToNormalTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" type="MsTestTestMethodElement" MethodName="BackToNormalTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.BadUserCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="BadUserCodesTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.BadUserCodesXTDuress" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="BadUserCodesXTDuress" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.BaseMessageProcessorTest.BadUserCodesXTiDuress" ParentId="MsTest:AlarmUnitTest.BaseMessageProcessorTest" type="MsTestTestMethodElement" MethodName="BadUserCodesXTiDuress" TypeName="AlarmUnitTest.BaseMessageProcessorTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest.BehaviorBaseTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" type="MsTestTestMethodElement" MethodName="BehaviorBaseTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest.BehaviorSleepTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" type="MsTestTestMethodElement" MethodName="BehaviorSleepTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.BehaviorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.BillingAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="BillingAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.BillingPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="BillingPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.BillingProfileTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="BillingProfileTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.BillingStartedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="BillingStartedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest.BindEnumToDropDownListTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindEnumToDropDownListTest" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest.BindEnumToListControlTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindEnumToListControlTest" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest.BindQueryToCheckboxListTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindQueryToCheckboxListTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest.BindQueryToDropDownListTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindQueryToDropDownListTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest.BindQueryToListTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindQueryToListTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest.BindQueryToRadioButtonListTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" type="MsTestTestMethodElement" MethodName="BindQueryToRadioButtonListTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.WebUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest.BitmaskBuilderTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" type="MsTestTestMethodElement" MethodName="BitmaskBuilderTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest.BothRolesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" type="MsTestTestMethodElement" MethodName="BothRolesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest.BusinessHoursTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" type="MsTestTestMethodElement" MethodName="BusinessHoursTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CameraServerBusyTest.BusyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CameraServerBusyTest" type="MsTestTestMethodElement" MethodName="BusyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CameraServerBusyTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.ByteArrayConversions" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="ByteArrayConversions" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest.CDMA4_1Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" type="MsTestTestMethodElement" MethodName="CDMA4_1Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests.CallWithAllPermissionsSetToNone" ParentId="MsTest:AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" type="MsTestTestMethodElement" MethodName="CallWithAllPermissionsSetToNone" TypeName="AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests.CallWithLoggedOutPermissions" ParentId="MsTest:AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" type="MsTestTestMethodElement" MethodName="CallWithLoggedOutPermissions" TypeName="AlarmUnitTest.CustomerDotNetTests.PermissionsCheckerGeneralTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.CanViewClip" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="CanViewClip" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.ChangeAccessToAlarmVerificationAndMonitoringTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeAccessToAlarmVerificationAndMonitoringTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.ChangeAccessToSystemArmingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeAccessToSystemArmingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.ChangeAccessToThermostatManagementTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeAccessToThermostatManagementTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeActivationFeeForAllFeaturesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeActivationFeeForAllFeaturesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeActivationFeeForAllPackagesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeActivationFeeForAllPackagesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeActivationFeeForFeatureTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeActivationFeeForFeatureTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeActivationFeeForPackageTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeActivationFeeForPackageTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeActiveTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeActiveTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.ChangeAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="ChangeAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.ChangeAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.ChangeBILoginNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="ChangeBILoginNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.ChangeBINameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="ChangeBINameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.ChangeBIPasswordTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="ChangeBIPasswordTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.ChangeBIUserGroupsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="ChangeBIUserGroupsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeBaseBidTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeBaseBidTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeBeepVolumeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeBeepVolumeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.ChangeBillingInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="ChangeBillingInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest.ChangeBothMaxPermissionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestMethodElement" MethodName="ChangeBothMaxPermissionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeBranchTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeBranchTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ChangeCSPasscodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ChangeCSPasscodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ChangeCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ChangeCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ChangeCSPrefixTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ChangeCSPrefixTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.ChangeCaptureProfileTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeCaptureProfileTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.ChangeContactDelayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="ChangeContactDelayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeContactInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeContactInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest.ChangeContactUserTypeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" type="MsTestTestMethodElement" MethodName="ChangeContactUserTypeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.ChangeContentPreferencesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeContentPreferencesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest.ChangeCulturePreferenceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" type="MsTestTestMethodElement" MethodName="ChangeCulturePreferenceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest.ChangeCustomerMapPermissionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestMethodElement" MethodName="ChangeCustomerMapPermissionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.ChangeCustomerNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeCustomerNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeDepartmentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeDepartmentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.ChangeDescriptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="ChangeDescriptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeDirectSignatureDefaultTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeDirectSignatureDefaultTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeEntryDelayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeEntryDelayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeExitDelayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeExitDelayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.ChangeImageSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeImageSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.ChangeImageToPanelSettings" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeImageToPanelSettings" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeInvalidEmailFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeInvalidEmailFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest.ChangeInvoiceFooterTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" type="MsTestTestMethodElement" MethodName="ChangeInvoiceFooterTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeLeadBiddingStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeLeadBiddingStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeLeadBiddingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeLeadBiddingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeLoginNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeLoginNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest.ChangeLoginNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestMethodElement" MethodName="ChangeLoginNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ChangeEmailPreferencesTest.ChangeMarketingCommEmailPreferenceTest" ParentId="MsTest:AlarmUnitTest.ChangeEmailPreferencesTest" type="MsTestTestMethodElement" MethodName="ChangeMarketingCommEmailPreferenceTest" TypeName="AlarmUnitTest.ChangeEmailPreferencesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeMaxIncrementalBidTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeMaxIncrementalBidTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.ChangeModemInstallabilityStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="ChangeModemInstallabilityStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeMonthlyFeeForFeatureTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeMonthlyFeeForFeatureTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ChangeMonthlyFeeForPackageTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeMonthlyFeeForPackageTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.ChangeNetworkSettingsEnumsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeNetworkSettingsEnumsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.ChangeNetworkSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeNetworkSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.ChangeNetworkTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="ChangeNetworkTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.ChangeParameterTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="ChangeParameterTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest.ChangePasswordTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" type="MsTestTestMethodElement" MethodName="ChangePasswordTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.ChangePasswordTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="ChangePasswordTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest.ChangePasswordTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestMethodElement" MethodName="ChangePasswordTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.ChangePingerGroupForUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="ChangePingerGroupForUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.ChangePlanTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="ChangePlanTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.ChangeProductTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeProductTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.ChangePromotionMessageParamsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="ChangePromotionMessageParamsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.ChangeQuestionItemBidTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="ChangeQuestionItemBidTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.ChangeRelatedDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="ChangeRelatedDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest.ChangeRepCultureTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" type="MsTestTestMethodElement" MethodName="ChangeRepCultureTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCultureTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest.ChangeRepMapPermissionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestMethodElement" MethodName="ChangeRepMapPermissionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.ChangeReplacementShippingAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="ChangeReplacementShippingAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeResetPasswordFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeResetPasswordFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeRolesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeRolesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest.ChangeSecurityQuestionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" type="MsTestTestMethodElement" MethodName="ChangeSecurityQuestionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeSensorNamesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeSensorNamesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.ChangeServicePlanTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="ChangeServicePlanTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeSpeakerVolumeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeSpeakerVolumeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.ChangeStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="ChangeStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.ChangeStringFieldTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="ChangeStringFieldTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.ChangeStringFieldTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="ChangeStringFieldTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.ChangeSystemGroupNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="ChangeSystemGroupNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.ChangeThermostatExtremeTemperatureSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeThermostatExtremeTemperatureSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.ChangeThermostatFireShutoffTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeThermostatFireShutoffTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.ChangeTimeZoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="ChangeTimeZoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.ChangeTroubleBeepsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="ChangeTroubleBeepsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.ChangeUnitInstallAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="ChangeUnitInstallAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.ChangeVerizonAccountTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="ChangeVerizonAccountTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSupportTicketVisibilityTest.ChangeVisibilityTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSupportTicketVisibilityTest" type="MsTestTestMethodElement" MethodName="ChangeVisibilityTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSupportTicketVisibilityTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ChangedTwoWayVoiceFireTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ChangedTwoWayVoiceFireTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ChangedTwoWayVoiceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ChangedTwoWayVoiceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CheckArmingSupervisionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CheckArmingSupervisionTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.CheckPasswordAnswerTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="CheckPasswordAnswerTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.SensorNotOpenedManagerTest.CheckSchedulesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.SensorNotOpenedManagerTest" type="MsTestTestMethodElement" MethodName="CheckSchedulesTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.SensorNotOpenedManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LatchkeyManagerTest.CheckSchedulesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LatchkeyManagerTest" type="MsTestTestMethodElement" MethodName="CheckSchedulesTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LatchkeyManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest.CheckSubtypeEnumForDuplicatesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestMethodElement" MethodName="CheckSubtypeEnumForDuplicatesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LongMessageTest.CheckSumIsValidTest" ParentId="MsTest:AlarmUnitTest.LongMessageTest" type="MsTestTestMethodElement" MethodName="CheckSumIsValidTest" TypeName="AlarmUnitTest.LongMessageTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.CheckUtf8LengthTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="CheckUtf8LengthTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase0Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase0Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase1Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase1Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase2Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase2Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase3Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase3Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase4Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase4Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase5Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase5Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase6Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase6Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase7Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase7Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutCase8Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutCase8Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CheckinCheckoutTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CheckinCheckoutTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.CleanGatewayIdTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="CleanGatewayIdTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.CleanMacAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="CleanMacAddressTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.CleanPhoneNumberTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="CleanPhoneNumberTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.CleanerChecksOutGuestTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="CleanerChecksOutGuestTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CleaningInProgressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CleaningInProgressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.CleaningInspectionCompleteTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="CleaningInspectionCompleteTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.ClearAllZoneConfigsTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="ClearAllZoneConfigsTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.ClearInvoiceItemsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="ClearInvoiceItemsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AdjustVideoQuotaTest.ClearSpaceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AdjustVideoQuotaTest" type="MsTestTestMethodElement" MethodName="ClearSpaceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AdjustVideoQuotaTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.ClipParamsChangedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="ClipParamsChangedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest.ClosingCodesDeleteTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" type="MsTestTestMethodElement" MethodName="ClosingCodesDeleteTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest.ClosingCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" type="MsTestTestMethodElement" MethodName="ClosingCodesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.YaleTest.ClosingCodesManagerTest.ClosingCodesManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest.ColonyAmericanTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" type="MsTestTestMethodElement" MethodName="ColonyAmericanTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.CommandAttemptsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="CommandAttemptsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetCommandCountTest.CommandCountResetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetCommandCountTest" type="MsTestTestMethodElement" MethodName="CommandCountResetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetCommandCountTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.CommercialActivityReportRecipientsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="CommercialActivityReportRecipientsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.CommercialActivityReportsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="CommercialActivityReportsTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest.CommercialOpenCloseEventsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" type="MsTestTestMethodElement" MethodName="CommercialOpenCloseEventsTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.CommercialSensorReportingCommandTest.CommercialSensorReportingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.CommercialSensorReportingCommandTest" type="MsTestTestMethodElement" MethodName="CommercialSensorReportingTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.CommercialSensorReportingCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest.ComputedLevel3Key" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestMethodElement" MethodName="ComputedLevel3Key" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.Concord3SinglePartitionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="Concord3SinglePartitionTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.Concord4MultiVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="Concord4MultiVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.Concord4SinglePartitionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="Concord4SinglePartitionTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.Concord4SingleVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="Concord4SingleVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.ConcordExpressVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="ConcordExpressVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.ConfirmPrimaryEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="ConfirmPrimaryEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.ConfirmationCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="ConfirmationCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.ContactUsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="ContactUsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.ConvertAllTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="ConvertAllTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.ConvertToAsciiTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="ConvertToAsciiTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.ConvertToTitleCaseTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="ConvertToTitleCaseTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.CopyCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="CopyCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.CopySlotsToAccessPointsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="CopySlotsToAccessPointsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.CopyToLuGsmSimStagingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="CopyToLuGsmSimStagingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest.CopyToOtherDaysTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" type="MsTestTestMethodElement" MethodName="CopyToOtherDaysTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.CreateAccountNoShellTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="CreateAccountNoShellTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.CreateAccountShellTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="CreateAccountShellTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateArmingSupervisionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateArmingSupervisionTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.CreateCSTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="CreateCSTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.WebServicesTest.CustomerManagementTest.CreateCustomerForDealerTest" ParentId="MsTest:AlarmUnitDbTest.WebServicesTest.CustomerManagementTest" type="MsTestTestMethodElement" MethodName="CreateCustomerForDealerTest" TypeName="AlarmUnitDbTest.WebServicesTest.CustomerManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.CreateEmployeeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="CreateEmployeeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.CreateEventNotificationTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="CreateEventNotificationTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest.CreateGuestEmailTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" type="MsTestTestMethodElement" MethodName="CreateGuestEmailTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateInactivityTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateInactivityTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateLatchkeyLbsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateLatchkeyLbsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateLatchkeyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateLatchkeyTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.CreateLoginNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="CreateLoginNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.CreateLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="CreateLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateMedicationAlertTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateMedicationAlertTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.CreateMultipleEventNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="CreateMultipleEventNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.CreateNewLoginNoCustomerTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="CreateNewLoginNoCustomerTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.CreateNewLoginWithLanguageTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="CreateNewLoginWithLanguageTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.CreateNewPricingColumnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="CreateNewPricingColumnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.CreateNotification2Test" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="CreateNotification2Test" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.CreateNotificationTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="CreateNotificationTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.CreateRecordingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="CreateRecordingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateRemindersTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateRemindersTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateSLORuleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateSLORuleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateSLOTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateSLOTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.CreateSensorAlarmUploadAlertTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="CreateSensorAlarmUploadAlertTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.CreateSensorManualUploadAlertTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="CreateSensorManualUploadAlertTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.CreateStagesTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="CreateStagesTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.CreateSubDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="CreateSubDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateSubscriptionFromMonitor2Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateSubscriptionFromMonitor2Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateSubscriptionFromMonitorTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateSubscriptionFromMonitorTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.CreateSystemGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="CreateSystemGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ConnectedKeySafeTest.CreateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ConnectedKeySafeTest" type="MsTestTestMethodElement" MethodName="CreateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ConnectedKeySafeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.CreateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="CreateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateLoginTest.CreateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateLoginTest" type="MsTestTestMethodElement" MethodName="CreateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest.CreateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" type="MsTestTestMethodElement" MethodName="CreateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest.CreateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" type="MsTestTestMethodElement" MethodName="CreateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.KeySafeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.CreateVideoETRTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="CreateVideoETRTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.CreatedGeofenceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="CreatedGeofenceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateCustomerTest.CreatedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateCustomerTest" type="MsTestTestMethodElement" MethodName="CreatedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateCustomerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateRMATest.CreatedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateRMATest" type="MsTestTestMethodElement" MethodName="CreatedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CreateRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.CreationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="CreationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest.CreditApprovedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" type="MsTestTestMethodElement" MethodName="CreditApprovedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.CreditLimitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="CreditLimitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest.CreditRejectedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" type="MsTestTestMethodElement" MethodName="CreditRejectedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReviewBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest.CustomerContactFromContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" type="MsTestTestMethodElement" MethodName="CustomerContactFromContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.CustomerRoleHasAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="CustomerRoleHasAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.CustomerWithMultiplePartitionsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="CustomerWithMultiplePartitionsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.DSCOneTimeUserCodesVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="DSCOneTimeUserCodesVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest.DailyStatusTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" type="MsTestTestMethodElement" MethodName="DailyStatusTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.DashboardAccessCloseTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="DashboardAccessCloseTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.DashboardCheckinCheckoutTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="DashboardCheckinCheckoutTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.DashboardFirstCheckinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="DashboardFirstCheckinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.DashboardLogicTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="DashboardLogicTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.DashboardLogicTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="DashboardLogicTest2" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.DataTableToCsvTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="DataTableToCsvTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ComparisonUtilsTest.DatesWithinOneSecondTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ComparisonUtilsTest" type="MsTestTestMethodElement" MethodName="DatesWithinOneSecondTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ComparisonUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.DaughterBoardTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="DaughterBoardTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.DealerSiteLoginTest.DealerSiteLoginViaMobileExTest" ParentId="MsTest:AlarmUnitTest.DealerSiteLoginTest" type="MsTestTestMethodElement" MethodName="DealerSiteLoginViaMobileExTest" TypeName="AlarmUnitTest.DealerSiteLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.DealerSiteLoginTest.DealerSiteLoginViaWebExTest" ParentId="MsTest:AlarmUnitTest.DealerSiteLoginTest" type="MsTestTestMethodElement" MethodName="DealerSiteLoginViaWebExTest" TypeName="AlarmUnitTest.DealerSiteLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest.DeclineOfferTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" type="MsTestTestMethodElement" MethodName="DeclineOfferTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ActOnCustomerOfferTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.DefaultCustomerNotificationsAddTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="DefaultCustomerNotificationsAddTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.DefaultCustomerNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="DefaultCustomerNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.DefaultEventGroupsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="DefaultEventGroupsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.DefaultLineCutRequiredTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="DefaultLineCutRequiredTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.DefaultRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="DefaultRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.DefaultTwoWayOnFireEnabledTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="DefaultTwoWayOnFireEnabledTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.DefaultsToValidConnectionInfoForATTTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="DefaultsToValidConnectionInfoForATTTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.DelayedCommandRuleTest.DelayedCommandRuleBodyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.DelayedCommandRuleTest" type="MsTestTestMethodElement" MethodName="DelayedCommandRuleBodyTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.DelayedCommandRuleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.DeleteAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="DeleteAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.DeleteArmingNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="DeleteArmingNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteArmingReminderTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteArmingReminderTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteArmingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteArmingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteArmingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteArmingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest.DeleteBIUserTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" type="MsTestTestMethodElement" MethodName="DeleteBIUserTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManageBITest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.DeleteCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="DeleteCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.DeleteCodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="DeleteCodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.DeleteContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="DeleteContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.DeleteContactAndCodeExWithCodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="DeleteContactAndCodeExWithCodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.DeleteContactAndCodeExWithoutCodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="DeleteContactAndCodeExWithoutCodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.DeleteContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="DeleteContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.DeleteContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="DeleteContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.DeleteCsContactTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="DeleteCsContactTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.DeleteCustomerRepTroubleReportEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="DeleteCustomerRepTroubleReportEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.DeleteDailyViewTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteDailyViewTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest.DeleteESCAdminTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" type="MsTestTestMethodElement" MethodName="DeleteESCAdminTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.DeleteEmployeeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="DeleteEmployeeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteEventNotificationTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteEventNotificationTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.DeleteEventTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteEventTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest.DeleteHoursTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" type="MsTestTestMethodElement" MethodName="DeleteHoursTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteImageUploadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteImageUploadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteInactivityTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteInactivityTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.DeleteInvoiceLineItemTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="DeleteInvoiceLineItemTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.DeleteInvoiceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="DeleteInvoiceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteLatchkeyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteLatchkeyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteLightRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteLightRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteLightScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteLightScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.DeleteLineItemNoSerialTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="DeleteLineItemNoSerialTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.DeleteLineItemTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="DeleteLineItemTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteLockRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteLockRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteLockTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteLockTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.DeleteLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="DeleteLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.DeleteLoginTokensTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="DeleteLoginTokensTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteMedicationAlertTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteMedicationAlertTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.DeleteMergedLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="DeleteMergedLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.DeleteNetworkReceiverTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="DeleteNetworkReceiverTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BillingActionTest.DeletePaymentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BillingActionTest" type="MsTestTestMethodElement" MethodName="DeletePaymentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BillingActionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.DeletePhoneTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="DeletePhoneTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteRearmingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteRearmingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteReminderTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteReminderTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest.DeleteRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" type="MsTestTestMethodElement" MethodName="DeleteRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteSecurityRuleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteSecurityRuleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteSensorActivityTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteSensorActivityTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.DeleteSensorLeftOpenTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="DeleteSensorLeftOpenTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteSensorLightInteractionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteSensorLightInteractionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest.DeleteSensorTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteSensorTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.DeleteSubDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="DeleteSubDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest.DeleteSystemGroupAdminCustomerLoginTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" type="MsTestTestMethodElement" MethodName="DeleteSystemGroupAdminCustomerLoginTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.ESCAdminDeleteLoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.DeleteSystemGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="DeleteSystemGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.DeleteTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="DeleteTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.DeleteTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="DeleteTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.DeleteTwoWayPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="DeleteTwoWayPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DeleteZWaveAutomationEventTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DeleteZWaveAutomationEventTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.DeleteZoneConfigTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="DeleteZoneConfigTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.DeletedCleanerTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="DeletedCleanerTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.DeletedGeofenceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="DeletedGeofenceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.DeletedVideoCameraTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="DeletedVideoCameraTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest.DemoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" type="MsTestTestMethodElement" MethodName="DemoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.DirectSystemsGroupsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="DirectSystemsGroupsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.DirectUserGroupsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="DirectUserGroupsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBadMailTest.BadMailTest.DisableBadDomainsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBadMailTest.BadMailTest" type="MsTestTestMethodElement" MethodName="DisableBadDomainsTest" TypeName="AlarmUnitDbTest.AlarmBadMailTest.BadMailTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.DisablePermissionsFromPlanFeaturesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="DisablePermissionsFromPlanFeaturesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DisableScheduledRediscoveryTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DisableScheduledRediscoveryTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.DisableScheduledSoftResetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="DisableScheduledSoftResetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.DisabledTwoWayPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="DisabledTwoWayPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.DisconnectedSimTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="DisconnectedSimTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.DisplayDescriptionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="DisplayDescriptionTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LightScheduleActionTest.DoActionTest" ParentId="MsTest:AlarmUnitTest.LightScheduleActionTest" type="MsTestTestMethodElement" MethodName="DoActionTest" TypeName="AlarmUnitTest.LightScheduleActionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ThirdPartyDeviceProcessorTest.DoProcessMessageTest" ParentId="MsTest:AlarmUnitTest.ThirdPartyDeviceProcessorTest" type="MsTestTestMethodElement" MethodName="DoProcessMessageTest" TypeName="AlarmUnitTest.ThirdPartyDeviceProcessorTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.DottedIpAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="DottedIpAddressTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.DueDateAgeDaysTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="DueDateAgeDaysTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.DuressCodeProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="DuressCodeProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.DuressCodeProcessingXTFromPanelSettingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="DuressCodeProcessingXTFromPanelSettingTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.DuressUserCodesProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="DuressUserCodesProcessingTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest.DuressUserTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" type="MsTestTestMethodElement" MethodName="DuressUserTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PackageTest.ESCOnlyForCommercialTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PackageTest" type="MsTestTestMethodElement" MethodName="ESCOnlyForCommercialTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PackageTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.EditBillingInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="EditBillingInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.EditBillingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="EditBillingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.EditCameraETRStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="EditCameraETRStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.EditCameraVMDStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="EditCameraVMDStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.EmailAlertUpdateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="EmailAlertUpdateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.EmailFromTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="EmailFromTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.EmailNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="EmailNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest.EmailPinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" type="MsTestTestMethodElement" MethodName="EmailPinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.EmptyResourceKeyExceptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="EmptyResourceKeyExceptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.EmptyResourceKeyMessageTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="EmptyResourceKeyMessageTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.EmptyScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="EmptyScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.EnableScheduledRediscoveryTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="EnableScheduledRediscoveryTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.EnableScheduledSoftResetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="EnableScheduledSoftResetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.EnableSevereWeatherTestModeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="EnableSevereWeatherTestModeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.EncodeToJSTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="EncodeToJSTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.EncryptDecryptPasswordTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="EncryptDecryptPasswordTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.EnergyReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="EnergyReportTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest.EnteredPaymentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" type="MsTestTestMethodElement" MethodName="EnteredPaymentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeInvoiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.EnterpriseEditTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="EnterpriseEditTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest.EnterpriseUpdateAccessPointSlotTest" ParentId="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestMethodElement" MethodName="EnterpriseUpdateAccessPointSlotTest" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest.EnterpriseUserTest" ParentId="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestMethodElement" MethodName="EnterpriseUserTest" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.EnumToStringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="EnumToStringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest.EquipmentListTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" type="MsTestTestMethodElement" MethodName="EquipmentListTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.EscapeSpecialCharactersTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="EscapeSpecialCharactersTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ExpireSlotTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ExpireSlotTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ExpiredCardEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ExpiredCardEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ExpiredSlotCommandTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ExpiredSlotCommandTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ExpiredSlotProcTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ExpiredSlotProcTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.ExpiringScheduledCommandsTest.ExpiringScheduledCommandsRuleBodyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.ExpiringScheduledCommandsTest" type="MsTestTestMethodElement" MethodName="ExpiringScheduledCommandsRuleBodyTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.ExpiringScheduledCommandsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ExpiringUserCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ExpiringUserCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ExpiringUserCodeTestMultiAccessPoint" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ExpiringUserCodeTestMultiAccessPoint" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ExpiringUserCodeTestMultiAccessPointPartial" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ExpiringUserCodeTestMultiAccessPointPartial" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.ExtendCustomerManagedAddOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="ExtendCustomerManagedAddOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest.FilterReservationsTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" type="MsTestTestMethodElement" MethodName="FilterReservationsTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.FindActiveTransitionAtTimeEmptyScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="FindActiveTransitionAtTimeEmptyScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.FindActiveTransitionAtTimeTypicalScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="FindActiveTransitionAtTimeTypicalScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest.FindCustomerByManyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" type="MsTestTestMethodElement" MethodName="FindCustomerByManyTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest.FindCustomerByUnitIdTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" type="MsTestTestMethodElement" MethodName="FindCustomerByUnitIdTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest.FindCustomerListWithTroubleConditionsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" type="MsTestTestMethodElement" MethodName="FindCustomerListWithTroubleConditionsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerListLoaderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest.FindFirstControlOfTypeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestMethodElement" MethodName="FindFirstControlOfTypeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.FiveTwoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="FiveTwoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest.FlagAsBadLeadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" type="MsTestTestMethodElement" MethodName="FlagAsBadLeadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagBadLeadTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.FormatISFirmwareVersionTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="FormatISFirmwareVersionTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.FormatPhoneNumberTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="FormatPhoneNumberTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.FormatPhoneNumber_ToSaveTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="FormatPhoneNumber_ToSaveTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.FormatPhoneNumber_ToSaveTest1" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="FormatPhoneNumber_ToSaveTest1" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.LocksTest.FormatStatusDateTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.LocksTest" type="MsTestTestMethodElement" MethodName="FormatStatusDateTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.LocksTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest.FromCustomerIdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" type="MsTestTestMethodElement" MethodName="FromCustomerIdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.GeneralInquiriesPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="GeneralInquiriesPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.GenerateScheduledUserCodeRuleCommandsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="GenerateScheduledUserCodeRuleCommandsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest.GenerateTokenWithData" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestMethodElement" MethodName="GenerateTokenWithData" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.GetAccessPointUserTypesWithUserAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="GetAccessPointUserTypesWithUserAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.GetAllContactsExceptTypesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="GetAllContactsExceptTypesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest.GetAllGroupLoginsTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" type="MsTestTestMethodElement" MethodName="GetAllGroupLoginsTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.GetAllUserCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="GetAllUserCodesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.GetBitFlagsTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="GetBitFlagsTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.GetBitValueTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="GetBitValueTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest.GetBookingsBetweenDatesTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" type="MsTestTestMethodElement" MethodName="GetBookingsBetweenDatesTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.Globalization.CultureManagerTests.GetBrowserCultureTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.Globalization.CultureManagerTests" type="MsTestTestMethodElement" MethodName="GetBrowserCultureTest" TypeName="AlarmUnitTest.AlarmUtilsTests.Globalization.CultureManagerTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetCentralStationActionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetCentralStationActionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetCentralStationHistoryEventsTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetCentralStationHistoryEventsTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetChangeLogInfoTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetChangeLogInfoTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ModemCommandsTest.GetCommandDescTest" ParentId="MsTest:AlarmUnitTest.ModemCommandsTest" type="MsTestTestMethodElement" MethodName="GetCommandDescTest" TypeName="AlarmUnitTest.ModemCommandsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.ModemCommandsTest.GetCommandDesc_SetSequenceNumbers" ParentId="MsTest:AlarmUnitTest.ModemCommandsTest" type="MsTestTestMethodElement" MethodName="GetCommandDesc_SetSequenceNumbers" TypeName="AlarmUnitTest.ModemCommandsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.DashboardTest.GetConnectedSystemsNamesTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.DashboardTest" type="MsTestTestMethodElement" MethodName="GetConnectedSystemsNamesTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.DashboardTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.GetContactAddressByConfirmationCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="GetContactAddressByConfirmationCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.GetContactAddressFromWebServicesIdTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="GetContactAddressFromWebServicesIdTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.GetContactAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="GetContactAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.GetContactFromGlobalIdTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="GetContactFromGlobalIdTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.GetCountryCodeFromPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="GetCountryCodeFromPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetCsContactsTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetCsContactsTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest.GetCulture" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" type="MsTestTestMethodElement" MethodName="GetCulture" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest.GetCustomerListDataSetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" type="MsTestTestMethodElement" MethodName="GetCustomerListDataSetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest.GetCustomerListTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" type="MsTestTestMethodElement" MethodName="GetCustomerListTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetCustomerListTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetCustomerListTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest.GetDataFieldForFibroTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" type="MsTestTestMethodElement" MethodName="GetDataFieldForFibroTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest.GetDatasetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" type="MsTestTestMethodElement" MethodName="GetDatasetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetDealerActionsByCustomerIDTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetDealerActionsByCustomerIDTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetDealerActionsByDealerIDTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetDealerActionsByDealerIDTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LongMessageTest.GetDescriptionTest" ParentId="MsTest:AlarmUnitTest.LongMessageTest" type="MsTestTestMethodElement" MethodName="GetDescriptionTest" TypeName="AlarmUnitTest.LongMessageTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.LongMessageTest.GetDescription_Passthrough" ParentId="MsTest:AlarmUnitTest.LongMessageTest" type="MsTestTestMethodElement" MethodName="GetDescription_Passthrough" TypeName="AlarmUnitTest.LongMessageTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.NeoTests.GetDownloadCommandStringForPartitionsTest" ParentId="MsTest:AlarmUnitTest.NeoTests" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringForPartitionsTest" TypeName="AlarmUnitTest.NeoTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.GetDownloadCommandStringSensorIdInHexTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringSensorIdInHexTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TwoGigV112Test.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.TwoGigV112Test" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.TwoGigV112Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TwoGigV15Test.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.TwoGigV15Test" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.TwoGigV15Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.XT16PanelSettingsTest.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.XT16PanelSettingsTest" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.XT16PanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.NXSettingsTest.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.NXSettingsTest" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.NXSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.TwoGigV113Test.GetDownloadCommandStringTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.TwoGigV113Test" type="MsTestTestMethodElement" MethodName="GetDownloadCommandStringTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.TwoGigV113Test" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest.GetEnterpriseAdminLoginsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" type="MsTestTestMethodElement" MethodName="GetEnterpriseAdminLoginsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest.GetFilterableHistoryTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" type="MsTestTestMethodElement" MethodName="GetFilterableHistoryTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.GetGatewayIDForSerialNumberTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="GetGatewayIDForSerialNumberTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest.GetIPAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest" type="MsTestTestMethodElement" MethodName="GetIPAddressTest" TypeName="AlarmUnitTest.AlarmUtilsTests.IPMaskTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.GetLastStreamingTimeFromLogLG" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="GetLastStreamingTimeFromLogLG" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest.GetLoadedHistoryList" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" type="MsTestTestMethodElement" MethodName="GetLoadedHistoryList" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.HistoryAnalysis.HistoricalHomeAwayTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetLocationPhoneTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetLocationPhoneTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetLocationsCommercialAdcDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetLocationsCommercialAdcDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetLocationsCommercialPCDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetLocationsCommercialPCDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetLocationsEnergyDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetLocationsEnergyDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetLocationsPcVrmDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetLocationsPcVrmDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetLoginDealerActionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetLoginDealerActionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetLoginLoginActionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetLoginLoginActionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AdminDotNetTest.LeadCustomerAssociationTest.GetMatchingLeadsTest" ParentId="MsTest:AlarmUnitDbTest.AdminDotNetTest.LeadCustomerAssociationTest" type="MsTestTestMethodElement" MethodName="GetMatchingLeadsTest" TypeName="AlarmUnitDbTest.AdminDotNetTest.LeadCustomerAssociationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest.GetNetgearAdminPassword" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestMethodElement" MethodName="GetNetgearAdminPassword" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest.GetNextMissingAgreement" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" type="MsTestTestMethodElement" MethodName="GetNextMissingAgreement" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest.GetOrCreateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" type="MsTestTestMethodElement" MethodName="GetOrCreateTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.BasePanelTest.GetPanelCultureTest" ParentId="MsTest:AlarmUnitTest.BasePanelTest" type="MsTestTestMethodElement" MethodName="GetPanelCultureTest" TypeName="AlarmUnitTest.BasePanelTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest.GetPatchIdsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" type="MsTestTestMethodElement" MethodName="GetPatchIdsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.GetPointCentralVRMOccupancyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="GetPointCentralVRMOccupancyTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.GetPokeCommandForPanelTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="GetPokeCommandForPanelTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest.GetPreviewDataSet" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" type="MsTestTestMethodElement" MethodName="GetPreviewDataSet" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.CustomerListDw.CustomerListDwLoaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetPropertyAvailabilityInfoTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetPropertyAvailabilityInfoTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest.GetPropertyDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" type="MsTestTestMethodElement" MethodName="GetPropertyDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetPropertyIndexesTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetPropertyIndexesTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetReservationChangeLogTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetReservationChangeLogTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.GetReservationDetailsTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="GetReservationDetailsTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.PublicApi.Video.GetRtmpStreamInfoTest.GetRtmpStreamInfo" ParentId="MsTest:AlarmUnitTest.PublicApi.Video.GetRtmpStreamInfoTest" type="MsTestTestMethodElement" MethodName="GetRtmpStreamInfo" TypeName="AlarmUnitTest.PublicApi.Video.GetRtmpStreamInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.GetSequenceNumberFromDataBytesTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="GetSequenceNumberFromDataBytesTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest.GetSimpleDateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" type="MsTestTestMethodElement" MethodName="GetSimpleDateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetSiteNumDevNumFailureTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetSiteNumDevNumFailureTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetSiteNumDevNumSuccessTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetSiteNumDevNumSuccessTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetSitePasscodeTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetSitePasscodeTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.GetStartupTimeFromLogLG" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="GetStartupTimeFromLogLG" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest.GetSystemAddressTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" type="MsTestTestMethodElement" MethodName="GetSystemAddressTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest.GetSystemGroupContactFromGlobalIdTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" type="MsTestTestMethodElement" MethodName="GetSystemGroupContactFromGlobalIdTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.GetSystemGroupLoginActionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="GetSystemGroupLoginActionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.GetTaskVersionTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="GetTaskVersionTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.GetTaskVersionsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="GetTaskVersionsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest.GetTemperatureUnitTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" type="MsTestTestMethodElement" MethodName="GetTemperatureUnitTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetTestMode_InEffectTest_Test" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetTestMode_InEffectTest_Test" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.GetTestMode_NotOnTest_Test" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="GetTestMode_NotOnTest_Test" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.GetTimeElapsed" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="GetTimeElapsed" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest.GetTimezonTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" type="MsTestTestMethodElement" MethodName="GetTimezonTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest.GetUnitDescriptionTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" type="MsTestTestMethodElement" MethodName="GetUnitDescriptionTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.GetUnitOccupancyWindowsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="GetUnitOccupancyWindowsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetUpdatedArmingStatusPCTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetUpdatedArmingStatusPCTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.GetUpdatedArmingStatusTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="GetUpdatedArmingStatusTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest.GetUserCodeStatusTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" type="MsTestTestMethodElement" MethodName="GetUserCodeStatusTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.GetUsersDataForEnterpriseTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="GetUsersDataForEnterpriseTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.GetUsersDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="GetUsersDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.GetValueForCsvTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="GetValueForCsvTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest.GetVersionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestMethodElement" MethodName="GetVersionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest.GiveAndRemoveAccessToAllEnterpriseContactsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" type="MsTestTestMethodElement" MethodName="GiveAndRemoveAccessToAllEnterpriseContactsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.GoodCreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="GoodCreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.GreenButtonReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="GreenButtonReportTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.GuestCreatedSecondChecksIn" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="GuestCreatedSecondChecksIn" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest.HSPA4_4Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" type="MsTestTestMethodElement" MethodName="HSPA4_4Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.VersionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest.HalfArmingSchedulePartitionsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" type="MsTestTestMethodElement" MethodName="HalfArmingSchedulePartitionsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PanelScheduleListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.HandlePhoneTrunkPrefixTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="HandlePhoneTrunkPrefixTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.HardwareFlavorTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="HardwareFlavorTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.HasAccessForLoginAsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="HasAccessForLoginAsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.HasAccessPointUserTypesAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="HasAccessPointUserTypesAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.HasAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="HasAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.HasAccessToBizTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="HasAccessToBizTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.HasAccessToCSTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="HasAccessToCSTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest.HasContactWithVoiceAndPinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" type="MsTestTestMethodElement" MethodName="HasContactWithVoiceAndPinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.HasImageSensorReceiverTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="HasImageSensorReceiverTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.HasPendingPanelAccessChangesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="HasPendingPanelAccessChangesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.HasSpeakerBuzzingTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="HasSpeakerBuzzingTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.HasZWaveTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="HasZWaveTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.HtmlEncodeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="HtmlEncodeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest.IPMaskConstructorTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest" type="MsTestTestMethodElement" MethodName="IPMaskConstructorTest" TypeName="AlarmUnitTest.AlarmUtilsTests.IPMaskTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.IQPanelVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="IQPanelVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest.ImpassaAMPTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" type="MsTestTestMethodElement" MethodName="ImpassaAMPTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.ImpassaTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.ImpassaTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="ImpassaTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.ImpassaVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="ImpassaVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.ImportUsersFromUnits3Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="ImportUsersFromUnits3Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.ImportUsersFromUnits4Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="ImportUsersFromUnits4Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.ImportUsersFromUnitsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="ImportUsersFromUnitsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.ImportUsersFromUnitsTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="ImportUsersFromUnitsTest2" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.InCollectionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="InCollectionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeZwaveLockCommandTest.InitZWaveLockPointCentralLockRuleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeZwaveLockCommandTest" type="MsTestTestMethodElement" MethodName="InitZWaveLockPointCentralLockRuleTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.InitializeZwaveLockCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.InitialSlotCreationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="InitialSlotCreationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeThermostatTest.InitializeNewThermostatSchedulesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.InitializeThermostatTest" type="MsTestTestMethodElement" MethodName="InitializeNewThermostatSchedulesTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.InitializeThermostatTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest.InitializeResourceType2Test" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestMethodElement" MethodName="InitializeResourceType2Test" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest.InitializeResourceTypeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestMethodElement" MethodName="InitializeResourceTypeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.InspectionInProgressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="InspectionInProgressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.InstallerCodeUploadTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="InstallerCodeUploadTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.InstallerDealerCodeTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="InstallerDealerCodeTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.InvalidateAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="InvalidateAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.InvalidatedDomainTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="InvalidatedDomainTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.InvoicingScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="InvoicingScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.IsAccountActiveFalseTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="IsAccountActiveFalseTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.IsAccountActiveTrueTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="IsAccountActiveTrueTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ZWaveThermostatScheduleTest.IsActiveAtTimeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ZWaveThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="IsActiveAtTimeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ZWaveThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.IsClientToServerTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="IsClientToServerTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.IsDigitsTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="IsDigitsTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.IsFrenchTwoGTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="IsFrenchTwoGTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.IsGsmTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="IsGsmTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest.IsHashtagStringTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" type="MsTestTestMethodElement" MethodName="IsHashtagStringTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.IsHexTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="IsHexTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.IsInvoicedFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="IsInvoicedFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.IsLutronCommandTypeTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="IsLutronCommandTypeTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.IsLutronOperationCharacterTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="IsLutronOperationCharacterTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsNormalAsciiTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsNormalAsciiTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.IsPreRev3Test" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="IsPreRev3Test" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest.IsProbablyValidUrlTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" type="MsTestTestMethodElement" MethodName="IsProbablyValidUrlTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TwitterWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.TimeZoneConverterTest.IsSouthernHemisphereDLTTest" ParentId="MsTest:AlarmUnitTest.TimeZoneConverterTest" type="MsTestTestMethodElement" MethodName="IsSouthernHemisphereDLTTest" TypeName="AlarmUnitTest.TimeZoneConverterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.IsSpanishTwoGTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="IsSpanishTwoGTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.IsTcpTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="IsTcpTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidArgentinaPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidArgentinaPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidBrazilPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidBrazilPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidChileCellPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidChileCellPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidChilePhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidChilePhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidColombiaCellPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidColombiaCellPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidColombiaPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidColombiaPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidColombiaTollFreePhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidColombiaTollFreePhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidEmailTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidGuatemalaPhone" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidGuatemalaPhone" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidIPTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidIPTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidMexicoPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidMexicoPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidPortugalPhone" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidPortugalPhone" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidSouthAfricaPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidSouthAfricaPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.IsValidTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="IsValidTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidTurkeyPhone" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidTurkeyPhone" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidUSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidUSPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest.IsValidVenezuelaPhone" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" type="MsTestTestMethodElement" MethodName="IsValidVenezuelaPhone" TypeName="AlarmUnitTest.AlarmUtilsTests.ValidationUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.JoinedCommunityTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="JoinedCommunityTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.KeepAliveExceptionTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="KeepAliveExceptionTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.KeepAliveFailureTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="KeepAliveFailureTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.KeepAliveSuccessTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="KeepAliveSuccessTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.LateFeeAgeDaysTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="LateFeeAgeDaysTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.LateFeeRateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="LateFeeRateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.LimitOfTokensForSensorNamesTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="LimitOfTokensForSensorNamesTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest.LiveRezTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" type="MsTestTestMethodElement" MethodName="LiveRezTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.ThirdPartyNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.LiveViewQualityChangedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="LiveViewQualityChangedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.LoadAllAddressesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="LoadAllAddressesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest.LoadMissingAgreements" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" type="MsTestTestMethodElement" MethodName="LoadMissingAgreements" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.AgreementsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.LocalizedMessageFromResourceString2Test" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="LocalizedMessageFromResourceString2Test" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.LocalizedMessageFromResourceStringTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="LocalizedMessageFromResourceStringTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.LocationSummaryReportsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="LocationSummaryReportsTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.LockExpiringSchedule2Test" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="LockExpiringSchedule2Test" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.LockExpiringScheduleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="LockExpiringScheduleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.LockUnenrollReenrollTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="LockUnenrollReenrollTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest.LogToDbTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" type="MsTestTestMethodElement" MethodName="LogToDbTest" TypeName="AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.LoginAsPermissionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="LoginAsPermissionTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest.LoginNewTest" ParentId="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestMethodElement" MethodName="LoginNewTest" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.LoginRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="LoginRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.LoginTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="LoginTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.LoginUserTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="LoginUserTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.LoginsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="LoginsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest.LostLeadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" type="MsTestTestMethodElement" MethodName="LostLeadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.MadePackageAvailableTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="MadePackageAvailableTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.MadePackageUnavailableTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="MadePackageUnavailableTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VideoTests.Main" ParentId="MsTest:AlarmUnitTest.VideoTests" type="MsTestTestMethodElement" MethodName="Main" TypeName="AlarmUnitTest.VideoTests" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.MakeTestCallTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="MakeTestCallTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest.ManageAccessEvents2Test" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="ManageAccessEvents2Test" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest.ManageAccessEventsTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="ManageAccessEventsTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ManageCSContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ManageCSContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.WebServicesTest.ManufacturingTest.ManufactureKeySafeTest" ParentId="MsTest:AlarmUnitDbTest.WebServicesTest.ManufacturingTest" type="MsTestTestMethodElement" MethodName="ManufactureKeySafeTest" TypeName="AlarmUnitDbTest.WebServicesTest.ManufacturingTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest.MarkAppAsDeadTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" type="MsTestTestMethodElement" MethodName="MarkAppAsDeadTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BackendAppChangeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest.MarkLineItemsAsReceivedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" type="MsTestTestMethodElement" MethodName="MarkLineItemsAsReceivedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeRMATest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.MarketingContactEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="MarketingContactEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.MarketingContactNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="MarketingContactNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.MarketingContactPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="MarketingContactPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest.MatchesTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest" type="MsTestTestMethodElement" MethodName="MatchesTest" TypeName="AlarmUnitTest.AlarmUtilsTests.IPMaskTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.MaxDeviceIdForNAMonitoringTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="MaxDeviceIdForNAMonitoringTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest.MaxLeadsPerMonthTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" type="MsTestTestMethodElement" MethodName="MaxLeadsPerMonthTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.MaxPanelUserIdTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="MaxPanelUserIdTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.MaxUsersTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="MaxUsersTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.MergeLoginTest.MergeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.MergeLoginTest" type="MsTestTestMethodElement" MethodName="MergeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.MergeLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.MidnightScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="MidnightScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.MinuteIdToTimeStringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="MinuteIdToTimeStringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest.MinuteToDateTimeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" type="MsTestTestMethodElement" MethodName="MinuteToDateTimeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.ConversionUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.MinutesToTimeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="MinutesToTimeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest.ModemSwappedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" type="MsTestTestMethodElement" MethodName="ModemSwappedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.ModifyFamilyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="ModifyFamilyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.MonitoringReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="MonitoringReportTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest.MultipleClassAuditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" type="MsTestTestMethodElement" MethodName="MultipleClassAuditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditHelperBaseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.NameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="NameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.NameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="NameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedCrashAndSmashUnknownUserWorkaroundTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedCrashAndSmashUnknownUserWorkaroundTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedRecentArmingWorkaroundTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedRecentArmingWorkaroundTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedToDisablePrealarmsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedToDisablePrealarmsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedToDiscardModuleMalfunctionsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedToDiscardModuleMalfunctionsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedToManuallyRequestZwaveEquipmentListTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedToManuallyRequestZwaveEquipmentListTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedUnknownUserRemoteArmingWorkaroundTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedUnknownUserRemoteArmingWorkaroundTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsCleaningTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsCleaningTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsCleaningTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsCleaningTest2" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsCleaningTest3" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsCleaningTest3" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedsHardResetWorkaroundTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedsHardResetWorkaroundTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsInspectionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsInspectionTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsInspectionTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsInspectionTest2" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.NeedsInspectionTest3" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="NeedsInspectionTest3" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.NeedsRemoveZWaveNodeWorkaroundTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="NeedsRemoveZWaveNodeWorkaroundTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.NeoVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="NeoVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.NewInfoEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="NewInfoEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.NewInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="NewInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest.NewPriceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" type="MsTestTestMethodElement" MethodName="NewPriceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest.NonPointHubPointSafeRemovalTest" ParentId="MsTest:AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" type="MsTestTestMethodElement" MethodName="NonPointHubPointSafeRemovalTest" TypeName="AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.NotificationFilteringTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="NotificationFilteringTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrAddHardDriveTest_IsNotRaid" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrAddHardDriveTest_IsNotRaid" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrAddHardDriveTest_IsRaid" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrAddHardDriveTest_IsRaid" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrChannelAddTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrChannelAddTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrChannelDeleteTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrChannelDeleteTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrRemoveHardDriveTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrRemoveHardDriveTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrReplaceHardDriveTest_IsNotRaid" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrReplaceHardDriveTest_IsNotRaid" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrReplaceHardDriveTest_IsRaid" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrReplaceHardDriveTest_IsRaid" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrScheduleDisableTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrScheduleDisableTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrScheduleEnableTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrScheduleEnableTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrVolumeCreateTest_Fail" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrVolumeCreateTest_Fail" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrVolumeCreateTest_Success" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrVolumeCreateTest_Success" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrVolumeDeleteTest_Fail" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrVolumeDeleteTest_Fail" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.NvrVolumeDeleteTest_Success" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="NvrVolumeDeleteTest_Success" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.NxSinglePartitionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="NxSinglePartitionTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.NxVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="NxVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.OneTimeUserProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="OneTimeUserProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest.OpenAccessCloseTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" type="MsTestTestMethodElement" MethodName="OpenAccessCloseTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.PointCentralProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitOpenAndCloseInfoTest.OpenAndCloseInfoTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitOpenAndCloseInfoTest" type="MsTestTestMethodElement" MethodName="OpenAndCloseInfoTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitOpenAndCloseInfoTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest.OpenSSLDecrypt" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestMethodElement" MethodName="OpenSSLDecrypt" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest.OpenSSLDeriveKeyAndIV" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestMethodElement" MethodName="OpenSSLDeriveKeyAndIV" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest.OpenSSLRoundtrip" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" type="MsTestTestMethodElement" MethodName="OpenSSLRoundtrip" TypeName="AlarmUnitTest.AlarmUtilsTests.CryptographyUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest.OptInToOfferTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" type="MsTestTestMethodElement" MethodName="OptInToOfferTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest.OptOutOfOfferTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" type="MsTestTestMethodElement" MethodName="OptOutOfOfferTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerOfferParticipationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.OrderManagerEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="OrderManagerEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.OrderManagerNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="OrderManagerNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.OrderManagerPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="OrderManagerPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest.OtaIsCompleteTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" type="MsTestTestMethodElement" MethodName="OtaIsCompleteTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PanelSettings.OtaManagerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.OtherConstructorTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="OtherConstructorTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.OverdueBillingsChargedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="OverdueBillingsChargedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.PadToLengthTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="PadToLengthTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTileHomePositionRedefinedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTileHomePositionRedefinedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltAddPresetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltAddPresetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltHomePositionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltHomePositionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltPresetDeleteFailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltPresetDeleteFailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltPresetDeletedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltPresetDeletedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltRenamePresetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltRenamePresetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.PanTiltRepositionPresetTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="PanTiltRepositionPresetTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.PanelAccessGrantedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="PanelAccessGrantedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.PanelAccessRevokedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="PanelAccessRevokedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.PanelTaskRevisionTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="PanelTaskRevisionTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.PanelTypeTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="PanelTypeTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.PanelVoiceAccessGrantedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="PanelVoiceAccessGrantedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.PanelVoiceAccessRevokedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="PanelVoiceAccessRevokedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.ParseLettersTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="ParseLettersTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.ParseNumericsTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="ParseNumericsTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PartitionAccessPointTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PartitionAccessPointTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest.PartitionDisarmedTest1" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" type="MsTestTestMethodElement" MethodName="PartitionDisarmedTest1" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest.PartitionDisarmedTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" type="MsTestTestMethodElement" MethodName="PartitionDisarmedTest2" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.AlohaMessagesTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.PartitionFlagsChangedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="PartitionFlagsChangedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.PartitionProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="PartitionProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest.PassThrough_AllSequenceNumbers" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestMethodElement" MethodName="PassThrough_AllSequenceNumbers" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest.PassthroughTest_CID" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestMethodElement" MethodName="PassthroughTest_CID" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest.PassthroughTest_SIA_Neo" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestMethodElement" MethodName="PassthroughTest_SIA_Neo" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest.PassthroughTest_SIA_Neo_Multiple" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" type="MsTestTestMethodElement" MethodName="PassthroughTest_SIA_Neo_Multiple" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.FibroNetworkReceiverEventTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest.PasswordChangedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" type="MsTestTestMethodElement" MethodName="PasswordChangedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.PauseNotificationsForDeviceTokenTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="PauseNotificationsForDeviceTokenTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.PauseNotificationsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="PauseNotificationsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PauseUnpauseConfirmationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PauseUnpauseConfirmationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.PausedSlotReclaimTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="PausedSlotReclaimTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest.PayingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" type="MsTestTestMethodElement" MethodName="PayingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.FlagCustomerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.PerformActionOnUnitsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="PerformActionOnUnitsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest.PinListGetSelectCommandTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="PinListGetSelectCommandTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PinReservationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PinReservationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.PinSwapTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="PinSwapTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AffiliateTest.PointCentralSetupAffiliateSettingsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AffiliateTest" type="MsTestTestMethodElement" MethodName="PointCentralSetupAffiliateSettingsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AffiliateTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest.PointHubPointSafeRemovalTest" ParentId="MsTest:AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" type="MsTestTestMethodElement" MethodName="PointHubPointSafeRemovalTest" TypeName="AlarmUnitDbTest.AdminDotNetTest.PointConnectAccountTerminationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PointSafeAccessPointTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PointSafeAccessPointTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PointSafeAndLockAccessPointTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PointSafeAndLockAccessPointTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.PointSafeLongCommandTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="PointSafeLongCommandTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.RimDotNetTest.VmailFormatTest.PopulateAddressTest" ParentId="MsTest:AlarmUnitDbTest.RimDotNetTest.VmailFormatTest" type="MsTestTestMethodElement" MethodName="PopulateAddressTest" TypeName="AlarmUnitDbTest.RimDotNetTest.VmailFormatTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.PrimaryEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="PrimaryEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.PrimaryUserReassignmentTest1" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="PrimaryUserReassignmentTest1" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.PrimaryUserReassignmentTest2" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="PrimaryUserReassignmentTest2" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest.ProcessContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" type="MsTestTestMethodElement" MethodName="ProcessContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.ProcessUploadedSettingsAdvancedTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="ProcessUploadedSettingsAdvancedTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.ProcessUploadedSettingsSenosrIdInHexTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="ProcessUploadedSettingsSenosrIdInHexTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.ProcessUploadedSettingsTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="ProcessUploadedSettingsTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.PromotionMessagesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="PromotionMessagesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest.ProvideIncorrectAnswerToSecurityQuestionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" type="MsTestTestMethodElement" MethodName="ProvideIncorrectAnswerToSecurityQuestionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PointCentral.PointCommandsTest.RFCommandTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.PointCentral.PointCommandsTest" type="MsTestTestMethodElement" MethodName="RFCommandTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.PointCentral.PointCommandsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest.ReachBidBudgetForDayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" type="MsTestTestMethodElement" MethodName="ReachBidBudgetForDayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EmailDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.ReactivateCustomerRepContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="ReactivateCustomerRepContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ReceivesPaperInvoicesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ReceivesPaperInvoicesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest.RecipientIsAllowedTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" type="MsTestTestMethodElement" MethodName="RecipientIsAllowedTest" TypeName="AlarmUnitTest.AlarmUtilsTests.EmailUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.RecordAccessCloseAMPTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="RecordAccessCloseAMPTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.RecordAccessCloseTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="RecordAccessCloseTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.RecordCloseByUserTypeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="RecordCloseByUserTypeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest.RejectPart" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" type="MsTestTestMethodElement" MethodName="RejectPart" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.ReloadPrimaryEmailReloadConManTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="ReloadPrimaryEmailReloadConManTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.RemoveAddOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="RemoveAddOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.RemoveAdminLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="RemoveAdminLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.RemoveCSEventGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="RemoveCSEventGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.RemoveCSIdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="RemoveCSIdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.RemoveCaptureReasonsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="RemoveCaptureReasonsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.RemoveChecksumTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveChecksumTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest.RemoveContactLoginTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" type="MsTestTestMethodElement" MethodName="RemoveContactLoginTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeDealerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest.RemoveContactTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" type="MsTestTestMethodElement" MethodName="RemoveContactTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.RemoveContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="RemoveContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.RemoveCountryCodeFromPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveCountryCodeFromPhoneTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.RemoveDeviceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="RemoveDeviceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.RemoveDiacriticsTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveDiacriticsTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.RemoveEscOnUnitInEnterpriseGroupTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="RemoveEscOnUnitInEnterpriseGroupTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.RemoveExpiredSlotTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="RemoveExpiredSlotTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest.RemoveFamilyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" type="MsTestTestMethodElement" MethodName="RemoveFamilyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeIDProtectionSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.RemoveInvalidFileNameCharactersTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveInvalidFileNameCharactersTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.RemoveLightTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="RemoveLightTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.RemoveLocationTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="RemoveLocationTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.RemoveLutronPingingFromUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="RemoveLutronPingingFromUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.RemoveMonitoringFromPingerGroup" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="RemoveMonitoringFromPingerGroup" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.RemoveOutGoingPingingFromUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="RemoveOutGoingPingingFromUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest.RemovePingingFromUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" type="MsTestTestMethodElement" MethodName="RemovePingingFromUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePingerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.RemovePricingColumnFromDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="RemovePricingColumnFromDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest.RemoveRadioTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" type="MsTestTestMethodElement" MethodName="RemoveRadioTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeServicePlanTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest.RemoveRadioTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" type="MsTestTestMethodElement" MethodName="RemoveRadioTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.RemoveSalesContactRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="RemoveSalesContactRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.RemoveSalesRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="RemoveSalesRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.RemoveSalesTerritoryTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="RemoveSalesTerritoryTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest.RemoveTest" ParentId="MsTest:AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveTest" TypeName="AlarmUnitDbTest.AlarmUtilsTest.CacheUtilsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest.RemoveUnitFromSystemGroupTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" type="MsTestTestMethodElement" MethodName="RemoveUnitFromSystemGroupTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SystemGroupChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest.RemoveValueFromListTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestMethodElement" MethodName="RemoveValueFromListTest" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest.RemovedRepRoleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" type="MsTestTestMethodElement" MethodName="RemovedRepRoleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePermissionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest.RepRoleHasAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" type="MsTestTestMethodElement" MethodName="RepRoleHasAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PermissionsTest.PermissionsManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.ReplaceCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="ReplaceCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.ReplaceUsersTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="ReplaceUsersTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitEventThermostatModeTest.ReplaceWildcardsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitEventThermostatModeTest" type="MsTestTestMethodElement" MethodName="ReplaceWildcardsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.UnitEventThermostatModeTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest.RequestChangePasswordEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" type="MsTestTestMethodElement" MethodName="RequestChangePasswordEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest.RequestChangePasswordEmailWithResetFromTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" type="MsTestTestMethodElement" MethodName="RequestChangePasswordEmailWithResetFromTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ResetPasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CustomerSiteLoginTest.RequestUsernameReminderTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CustomerSiteLoginTest" type="MsTestTestMethodElement" MethodName="RequestUsernameReminderTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.CustomerSiteLoginTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.RequiresResetAfterUserCodeChangeTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="RequiresResetAfterUserCodeChangeTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ResendCodeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ResendCodeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ResendUserCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ResendUserCodesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest.ReservePinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" type="MsTestTestMethodElement" MethodName="ReservePinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest.ReserveSpecificPinTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" type="MsTestTestMethodElement" MethodName="ReserveSpecificPinTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest.ResetCommandsFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" type="MsTestTestMethodElement" MethodName="ResetCommandsFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.ResetConversionTimerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="ResetConversionTimerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest.ResetPasswordTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestMethodElement" MethodName="ResetPasswordTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.ResetPasswordTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="ResetPasswordTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest.ResetPasswordTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" type="MsTestTestMethodElement" MethodName="ResetPasswordTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangePasswordTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.ResourceStringMessageXMLConversionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="ResourceStringMessageXMLConversionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.RestoreAllSettingsTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="RestoreAllSettingsTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.RestorePanelSettingsTest" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="RestorePanelSettingsTest" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnMiscPartFromRMA_CreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnMiscPartFromRMA_CreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnMiscPartFromRMA_ReplacementTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnMiscPartFromRMA_ReplacementTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnMiscPartNoRMA_CreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnMiscPartNoRMA_CreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnSerialFromRMA_CreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnSerialFromRMA_CreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnSerialFromRMA_ReplacementTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnSerialFromRMA_ReplacementTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest.ReturnSerialNoRMA_CreditTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" type="MsTestTestMethodElement" MethodName="ReturnSerialNoRMA_CreditTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReturnPartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ReverseByte" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ReverseByte" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.RoleRemovalTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="RoleRemovalTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest.RulesMessageProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" type="MsTestTestMethodElement" MethodName="RulesMessageProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest.RulesMessageProcessingTestMultiAccesPoint" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" type="MsTestTestMethodElement" MethodName="RulesMessageProcessingTestMultiAccesPoint" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SafeGrammaticalJoinTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SafeGrammaticalJoinTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SafeJoinTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SafeJoinTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SafeJoinTest1" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SafeJoinTest1" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest.SafeSelectValueInListTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" type="MsTestTestMethodElement" MethodName="SafeSelectValueInListTest" TypeName="AlarmUnitTest.AlarmUtilsTests.WebUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.SaveReminderTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="SaveReminderTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.EnterpriseTest.SaveSetupTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.EnterpriseTest" type="MsTestTestMethodElement" MethodName="SaveSetupTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.EnterpriseTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.EditLocationTest.EditLocationTest.SaveUsersTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.EditLocationTest.EditLocationTest" type="MsTestTestMethodElement" MethodName="SaveUsersTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.EnterpriseTest.EditLocationTest.EditLocationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.SavedUnitForwardingSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="SavedUnitForwardingSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest.ScheduleTransitionsOnlyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" type="MsTestTestMethodElement" MethodName="ScheduleTransitionsOnlyTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest.ScheduleWelcomeEmailTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" type="MsTestTestMethodElement" MethodName="ScheduleWelcomeEmailTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.ScheduledArmingHandlesUnvacatedPremisesTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="ScheduledArmingHandlesUnvacatedPremisesTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ScheduledUserCodeAdvancedTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ScheduledUserCodeAdvancedTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ScheduledUserCodeSimpleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ScheduledUserCodeSimpleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ScheduledUserCodeTestMultiAccessPointPartial" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ScheduledUserCodeTestMultiAccessPointPartial" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.ScheduledUserCodetTestMultiAccessPoint" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="ScheduledUserCodetTestMultiAccessPoint" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.SchlageLockTest.SchlageLockAccessCodeNotificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.SchlageLockTest" type="MsTestTestMethodElement" MethodName="SchlageLockAccessCodeNotificationTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.SchlageLockTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SecondsToDurationStringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SecondsToDurationStringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SecondsToTimeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SecondsToTimeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.SendInvoicesToSubDealersTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="SendInvoicesToSubDealersTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.SendOverdueNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="SendOverdueNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.SendStatementNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="SendStatementNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest.SendSubscriptionFromMonitorTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" type="MsTestTestMethodElement" MethodName="SendSubscriptionFromMonitorTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.SubscriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.SendWelcomeEmailDateTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="SendWelcomeEmailDateTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest.SendWelcomeEmailTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" type="MsTestTestMethodElement" MethodName="SendWelcomeEmailTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PointCentralEmailUtilTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SendsPhoneLineOkOnDialTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SendsPhoneLineOkOnDialTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest.SensorOpenCloseReportTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" type="MsTestTestMethodElement" MethodName="SensorOpenCloseReportTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.RulesMessageProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.SensorOpenCloseRuleTest.SensorOpenCloseReportingRuleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.SensorOpenCloseRuleTest" type="MsTestTestMethodElement" MethodName="SensorOpenCloseReportingRuleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.RulesEngineTest.SensorOpenCloseRuleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceTest.SensorStatusDescTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceTest" type="MsTestTestMethodElement" MethodName="SensorStatusDescTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SerializeToStringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SerializeToStringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest.SetCheckinCheckoutTimeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" type="MsTestTestMethodElement" MethodName="SetCheckinCheckoutTimeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UnitCheckinAndCheckoutTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest.SetCulture" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" type="MsTestTestMethodElement" MethodName="SetCulture" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.SetDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="SetDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest.SetFixedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" type="MsTestTestMethodElement" MethodName="SetFixedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeFixedPriceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest.SetMTUTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" type="MsTestTestMethodElement" MethodName="SetMTUTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest.SetMTUTimedOutTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" type="MsTestTestMethodElement" MethodName="SetMTUTimedOutTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest.SetPasswordTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" type="MsTestTestMethodElement" MethodName="SetPasswordTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.AlarmCustomerLoginAuthenticationProviderTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest.SetPropertyDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" type="MsTestTestMethodElement" MethodName="SetPropertyDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.SetSitePasscodeInsertTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="SetSitePasscodeInsertTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.SetSitePasscodeUpdateTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="SetSitePasscodeUpdateTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest.SetSystemAddress" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" type="MsTestTestMethodElement" MethodName="SetSystemAddress" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest.SetTemperatureUnitTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" type="MsTestTestMethodElement" MethodName="SetTemperatureUnitTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.SetTestModeTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="SetTestModeTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest.SetTimezoneTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" type="MsTestTestMethodElement" MethodName="SetTimezoneTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest.SetUnitDescriptionTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" type="MsTestTestMethodElement" MethodName="SetUnitDescriptionTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.SetVMDWindowTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="SetVMDWindowTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.ShippingThresholdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="ShippingThresholdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest.SiaChecksumTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" type="MsTestTestMethodElement" MethodName="SiaChecksumTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ReceiverEvents.SiaDataTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest.SignInLive" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" type="MsTestTestMethodElement" MethodName="SignInLive" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest.SignInStage" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" type="MsTestTestMethodElement" MethodName="SignInStage" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.SimonXtTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="SimonXtTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.SimonXtiTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="SimonXtiTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.SimpleEnterprisePinProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="SimpleEnterprisePinProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.SimplePanelUserCodesVerificationTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="SimplePanelUserCodesVerificationTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.SimplePinProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="SimplePinProcessingTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest.SkipEmailConfirmation" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" type="MsTestTestMethodElement" MethodName="SkipEmailConfirmation" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.LoginSettingsTests.LoginSettingsTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.SlotActivePeriodTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="SlotActivePeriodTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest.StartandEndHoursTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" type="MsTestTestMethodElement" MethodName="StartandEndHoursTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.BusinessHourManagerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.StartedGeolocationTrackingforPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="StartedGeolocationTrackingforPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.StaticConfigModeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="StaticConfigModeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.StoppedGeolocationTrackingforPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="StoppedGeolocationTrackingforPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.StoredProcTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="StoredProcTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.StripHttpFromUrlTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="StripHttpFromUrlTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.StripQueryStringParameterFromUriTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="StripQueryStringParameterFromUriTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.SubgroupsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="SubgroupsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.SubstringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="SubstringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.Supports2WayOverGsmForCellBackupTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="Supports2WayOverGsmForCellBackupTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsAESTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsAESTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsAcksTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsAcksTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsArmingOptionsOnArmAwayTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsArmingOptionsOnArmAwayTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsArmingOptionsOnArmStayTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsArmingOptionsOnArmStayTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsBroadbandOtaTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsBroadbandOtaTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsChangeReportingBitsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsChangeReportingBitsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest.SupportsClosingCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" type="MsTestTestMethodElement" MethodName="SupportsClosingCodesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsConnectionControlTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsConnectionControlTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsDateTimeFormatWithDLT" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsDateTimeFormatWithDLT" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsDialerFailureNotificationsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsDialerFailureNotificationsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsDisplayMessageTokensTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsDisplayMessageTokensTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsDualPath" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsDualPath" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsEncryptionTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsEncryptionTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsEtlTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsEtlTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsForceBypassTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsForceBypassTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsFullOtaTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsFullOtaTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsGenericSchedulesTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsGenericSchedulesTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsGettingZWaveDeviceNames" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsGettingZWaveDeviceNames" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsImageSensorTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsImageSensorTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsImsiFromMemoryCommandTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsImsiFromMemoryCommandTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsLimitOfTokensForSensorNamesInCommandTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsLimitOfTokensForSensorNamesInCommandTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest.SupportsMasterCodesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" type="MsTestTestMethodElement" MethodName="SupportsMasterCodesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ZWaveLockTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsMultiPinUpdatesTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsMultiPinUpdatesTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsMultipleSetpointAlertsSimultaneouslyTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsMultipleSetpointAlertsSimultaneouslyTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsNeighborReportingTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsNeighborReportingTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsNetworkRediscoveryTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsNetworkRediscoveryTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsNetworkTimeTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsNetworkTimeTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsNormalActivityOnGroup25Test" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsNormalActivityOnGroup25Test" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsOneSensorNamesCommandTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsOneSensorNamesCommandTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsOtherZWaveGenericCommandsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsOtherZWaveGenericCommandsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsOver60SensorsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsOver60SensorsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsPartitionsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsPartitionsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsPatchBasedOtaTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsPatchBasedOtaTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsRemoteArmingAbovePartitionFourTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsRemoteArmingAbovePartitionFourTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsRemoveFailedNodeSubCommandTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsRemoveFailedNodeSubCommandTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsReportingBitsWithForwardingOptionsTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsReportingBitsWithForwardingOptionsTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsRulesBasedSLOTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsRulesBasedSLOTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsRulesEngineTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsRulesEngineTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSettingZWaveDeviceNames" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSettingZWaveDeviceNames" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSilentArmingTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSilentArmingTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSilentTwoWayVoiceTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSilentTwoWayVoiceTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSingleLightScheduleTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSingleLightScheduleTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSouthernHemisphereDLTTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSouthernHemisphereDLTTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsSwitchingBetweenArmedStatesTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsSwitchingBetweenArmedStatesTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsTimingParametersInDisplayMessageTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsTimingParametersInDisplayMessageTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsTroubleStatusTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsTroubleStatusTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsTurnOnOffOpenCloseAcksTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsTurnOnOffOpenCloseAcksTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsXTiTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsXTiTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsZWaveDiagnosticCountersTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsZWaveDiagnosticCountersTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.SupportsZWaveTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="SupportsZWaveTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest.SwapPinToIndexTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" type="MsTestTestMethodElement" MethodName="SwapPinToIndexTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.PointCentralTest.PINReservationGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.SystemGroupRoleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="SystemGroupRoleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest.SystemGroupRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" type="MsTestTestMethodElement" MethodName="SystemGroupRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.UserGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest.SystemHealthRecipientsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" type="MsTestTestMethodElement" MethodName="SystemHealthRecipientsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerNotificationsTest.CustomerNotificationTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest.SystemHealthReportsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" type="MsTestTestMethodElement" MethodName="SystemHealthReportsTest" TypeName="AlarmUnitDbTest.AlarmReportServiceTest.ReportServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest.SystemSubGroupRoleTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" type="MsTestTestMethodElement" MethodName="SystemSubGroupRoleTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.LoginTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.TPVTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="TPVTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest.TaxExemptTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" type="MsTestTestMethodElement" MethodName="TaxExemptTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeBillingSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.TemporaryAndScheduledUserProcessingTests" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="TemporaryAndScheduledUserProcessingTests" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.TerminateAccount" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="TerminateAccount" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.TerminateCSTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="TerminateCSTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.TerminateCustomerRepContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="TerminateCustomerRepContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.TerminateModemTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="TerminateModemTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest.TerminateProinstallDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" type="MsTestTestMethodElement" MethodName="TerminateProinstallDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeLeadBiddingConditionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeactivateUserTest.TerminateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeactivateUserTest" type="MsTestTestMethodElement" MethodName="TerminateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeactivateUserTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.TerminationNeededTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="TerminationNeededTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest.TestAMPtoIQPanelPanelSettings" ParentId="MsTest:AlarmUnitTest.IQPanelPanelSettingsTest" type="MsTestTestMethodElement" MethodName="TestAMPtoIQPanelPanelSettings" TypeName="AlarmUnitTest.IQPanelPanelSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVAOutputTest.TestAlarmVAExeOutput" ParentId="MsTest:AlarmUnitTest.AlarmVAOutputTest" type="MsTestTestMethodElement" MethodName="TestAlarmVAExeOutput" TypeName="AlarmUnitTest.AlarmVAOutputTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestCheckUploadLimits" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestCheckUploadLimits" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.TestConstructor" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="TestConstructor" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestConstructor" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestConstructor" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestDisableCamSchedules" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestDisableCamSchedules" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestDoShutdownApplication" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestDoShutdownApplication" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestEncryptPassword" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestEncryptPassword" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestFilterFileNames" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestFilterFileNames" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestGenerateImgPrefix" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestGenerateImgPrefix" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestIRcontrolSensitivityEnumToString" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestIRcontrolSensitivityEnumToString" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestIsNewGenFirmware" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestIsNewGenFirmware" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestIsUnitOverUploadLimit" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestIsUnitOverUploadLimit" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestIsVivotekCam" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestIsVivotekCam" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestLoadCamFromPendingTable" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestLoadCamFromPendingTable" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestLoadCamerasAboveUploadLimit" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestLoadCamerasAboveUploadLimit" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestNewCamera" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestNewCamera" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest.TestNewCameraFromModel" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" type="MsTestTestMethodElement" MethodName="TestNewCameraFromModel" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.VideoCameraTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestResultOk" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestResultOk" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestResultOkReflection" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestResultOkReflection" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoServiceTest.TestWaitForThread" ParentId="MsTest:AlarmUnitTest.AlarmVideoServiceTest" type="MsTestTestMethodElement" MethodName="TestWaitForThread" TypeName="AlarmUnitTest.AlarmVideoServiceTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest.ThermostatSchedule_DefaultCoolScheduleGeneration" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="ThermostatSchedule_DefaultCoolScheduleGeneration" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest.ThermostatSchedule_DefaultHeatScheduleGeneration" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="ThermostatSchedule_DefaultHeatScheduleGeneration" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.Thermostats.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ToDatabaseNumberString_decimal" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ToDatabaseNumberString_decimal" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ToDatabaseNumberString_double" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ToDatabaseNumberString_double" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ToDatabaseString" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ToDatabaseString" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ToInvariantNullString" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ToInvariantNullString" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest.ToNullString" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" type="MsTestTestMethodElement" MethodName="ToNullString" TypeName="AlarmUnitTest.AlarmUtilsTests.ExtensionsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest.ToStringTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.IPMaskTest" type="MsTestTestMethodElement" MethodName="ToStringTest" TypeName="AlarmUnitTest.AlarmUtilsTests.IPMaskTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.ToggleOffTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="ToggleOffTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.ToggleOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="ToggleOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.TogglePauseTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="TogglePauseTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.ToggleRuleOffTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="ToggleRuleOffTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.ToggleRuleOnTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="ToggleRuleOnTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GenerateCustomerLoginTokenTest.TokenGeneratedTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GenerateCustomerLoginTokenTest" type="MsTestTestMethodElement" MethodName="TokenGeneratedTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GenerateCustomerLoginTokenTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest.TransferSlotTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" type="MsTestTestMethodElement" MethodName="TransferSlotTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.CreateCustomerContactFromContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.TransferredToAnotherDealerTest.TransferredTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.TransferredToAnotherDealerTest" type="MsTestTestMethodElement" MethodName="TransferredTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.TransferredToAnotherDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.TrimToLengthTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="TrimToLengthTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.TrimToUtf8LengthTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="TrimToUtf8LengthTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.TroubleSummaryReportNotificationsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="TroubleSummaryReportNotificationsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.TryParseNullableIntTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="TryParseNullableIntTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.TurnOffReportingBitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="TurnOffReportingBitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.TurnOnReportingBitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="TurnOnReportingBitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest.TwoGiG110Test" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" type="MsTestTestMethodElement" MethodName="TwoGiG110Test" TypeName="AlarmUnitDbTest.AlarmCommandsTest.RestoreAllUserCodesToPanelTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.TwoSetpointMidnightScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="TwoSetpointMidnightScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest.TwoWaySwapTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" type="MsTestTestMethodElement" MethodName="TwoWaySwapTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SwapModemTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest.TypeMappingTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" type="MsTestTestMethodElement" MethodName="TypeMappingTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.AuditUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.TypicalScheduleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="TypicalScheduleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.UnWrapAsBuilding36PassThroughMessageTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="UnWrapAsBuilding36PassThroughMessageTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.UnassignCSPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="UnassignCSPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.UnassignClientTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="UnassignClientTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest.UnavailableTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" type="MsTestTestMethodElement" MethodName="UnavailableTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeHardwarePricingTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest.UnitsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" type="MsTestTestMethodElement" MethodName="UnitsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.EnterpriseTest.SystemGroupTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest.UnlockTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" type="MsTestTestMethodElement" MethodName="UnlockTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UnlockAccountTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.UnpauseNotificationsForContactAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="UnpauseNotificationsForContactAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest.UpdateAccessPointSlotTest" ParentId="MsTest:AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateAccessPointSlotTest" TypeName="AlarmUnitDbTest.MobileWebServicesTest.MobileWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.UpdateAccessUserCodesWithSchedulesForNewUnitsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="UpdateAccessUserCodesWithSchedulesForNewUnitsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateActivityReportsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateActivityReportsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateAffiliateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateAffiliateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateAgencies" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateAgencies" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateAlarmContactMethodsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateAlarmContactMethodsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateAuthProviderLoginNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateAuthProviderLoginNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateBiAccessTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateBiAccessTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateBranchDescriptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateBranchDescriptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateBranchTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateBranchTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateBusinessTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateBusinessTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSCidTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSCidTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSContactEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSContactEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSContactNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSContactNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSContactPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSContactPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSCrashAndSmashTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSCrashAndSmashTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSFailNetworkEventsToPhoneInBatchesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSFailNetworkEventsToPhoneInBatchesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSFibroTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSFibroTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.UpdateCSInfoTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="UpdateCSInfoTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSOnlyKnownPhonesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSOnlyKnownPhonesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSSendTwoWayLfBeforeAlarmTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSSendTwoWayLfBeforeAlarmTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSShowInSearchTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSShowInSearchTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSSiaTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSSiaTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSSpecialUserCodeOptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSSpecialUserCodeOptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSTimeZoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSTimeZoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSTwoWayDtmfTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSTwoWayDtmfTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSTwoWayOverPotsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSTwoWayOverPotsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSTwoWayVoiceDelayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSTwoWayVoiceDelayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateCSTwoWayVoiceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateCSTwoWayVoiceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest.UpdateCameraSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateCameraSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCameraSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.UpdateCodeByUserTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="UpdateCodeByUserTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.UpdateCodeNoPartitionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="UpdateCodeNoPartitionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.UpdateCodeWithPartitionsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="UpdateCodeWithPartitionsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.UpdateContactChangeAddressTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="UpdateContactChangeAddressTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateContactEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateContactEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateContactInfoTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateContactInfoTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateContactNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateContactNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateContactNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateContactNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateContactNotificationStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateContactNotificationStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.UpdateContactOldPanelAccessValuesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="UpdateContactOldPanelAccessValuesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.UpdateContactPanelAccessTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="UpdateContactPanelAccessTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateContactPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateContactPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.UpdateCrashAndSmashTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="UpdateCrashAndSmashTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateCsContactTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateCsContactTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateCultureTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateCultureTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateCustomerRepContactAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateCustomerRepContactAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateCustomerRepTroubleReportEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateCustomerRepTroubleReportEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest.UpdateDailyViewCamerasTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateDailyViewCamerasTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeImageSensorSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateDealerBranchTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerBranchTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerConsumerEmailsFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerConsumerEmailsFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerContactEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerContactEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerContactFaxTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerContactFaxTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerContactNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerContactNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerContactPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerContactPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerCustomerIdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerCustomerIdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerInvalidEmailFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerInvalidEmailFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerSalesContactTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerSalesContactTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerSalesRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerSalesRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerSupportEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerSupportEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerSupportNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerSupportNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerSupportPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerSupportPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateDealerTerritoryTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDealerTerritoryTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateDepartmentTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateDepartmentTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateDeviceDescTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDeviceDescTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateDeviceLocationTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDeviceLocationTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest.UpdateDeviceStatusTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" type="MsTestTestMethodElement" MethodName="UpdateDeviceStatusTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.UpdateStatusTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateDeviceTypeTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateDeviceTypeTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateDeviceTypeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateDeviceTypeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.UpdateDirectRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="UpdateDirectRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest.UpdateDuressCodeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" type="MsTestTestMethodElement" MethodName="UpdateDuressCodeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeUserCodeTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest.UpdateEmployeeTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" type="MsTestTestMethodElement" MethodName="UpdateEmployeeTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.BeCloseTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest.UpdateEnergyGoalTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" type="MsTestTestMethodElement" MethodName="UpdateEnergyGoalTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest.UpdateEscapiaReservationsTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" type="MsTestTestMethodElement" MethodName="UpdateEscapiaReservationsTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.EscapiaApiTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateFundSourceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateFundSourceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest.UpdateFundingSourceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" type="MsTestTestMethodElement" MethodName="UpdateFundingSourceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeParameterTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest.UpdateGroup" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" type="MsTestTestMethodElement" MethodName="UpdateGroup" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.UpdateInsertFakeVersionInVersionStringTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="UpdateInsertFakeVersionInVersionStringTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactInstanceListTest.UpdateInstancesOfSchemeTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactInstanceListTest" type="MsTestTestMethodElement" MethodName="UpdateInstancesOfSchemeTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactInstanceListTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateJDEdwardsCustomerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateJDEdwardsCustomerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.UpdateLanguagePreferenceTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="UpdateLanguagePreferenceTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.UpdateLockMasterCodeForSelectedUnitsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="UpdateLockMasterCodeForSelectedUnitsTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest.UpdateLoginAdc" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" type="MsTestTestMethodElement" MethodName="UpdateLoginAdc" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginCultureTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginCultureTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginEmailPreferencesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginEmailPreferencesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateLoginNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateLoginNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest.UpdateLoginPc" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" type="MsTestTestMethodElement" MethodName="UpdateLoginPc" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.GroupManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginSystemReportPreferencesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginSystemReportPreferencesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateLoginValidEmailFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateLoginValidEmailFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.UpdateManagingDealerTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="UpdateManagingDealerTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateMarketingCommunicationsEmailPreferenceTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateMarketingCommunicationsEmailPreferenceTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateMeterFromParentlessTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateMeterFromParentlessTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateMeterIntegritySettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateMeterIntegritySettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateMeterParentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateMeterParentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateMeterToParentlessTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateMeterToParentlessTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateMonitorContactMethodsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateMonitorContactMethodsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.UpdateNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="UpdateNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest.UpdateNameTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" type="MsTestTestMethodElement" MethodName="UpdateNameTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateNetworkReceiverDescTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateNetworkReceiverDescTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateNetworkReceiverHostnameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateNetworkReceiverHostnameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateNetworkReceiverPortTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateNetworkReceiverPortTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest.UpdateNetworkReceiverPriorityTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" type="MsTestTestMethodElement" MethodName="UpdateNetworkReceiverPriorityTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSDefinitionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateOrderBillingContactEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateOrderBillingContactEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest.UpdatePartStatus" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" type="MsTestTestMethodElement" MethodName="UpdatePartStatus" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ManagePartTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.UpdatePinAccessUserCodesForEnterpriseGroupTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="UpdatePinAccessUserCodesForEnterpriseGroupTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.UpdatePingFrequencyTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="UpdatePingFrequencyTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.PointCentralTest.UpdatePointSafeDescriptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="UpdatePointSafeDescriptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.PointCentralTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdatePricingAsOfDateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdatePricingAsOfDateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.UpdatePrimaryEmailTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="UpdatePrimaryEmailTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdatePrimaryEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdatePrimaryEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.UpdatePrimaryPhoneTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="UpdatePrimaryPhoneTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdatePrimaryPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdatePrimaryPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest.UpdateProgramEnrollmentTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" type="MsTestTestMethodElement" MethodName="UpdateProgramEnrollmentTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEnergySettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateRemoteCommandsFlagTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateRemoteCommandsFlagTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest.UpdateReservationTest" ParentId="MsTest:AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" type="MsTestTestMethodElement" MethodName="UpdateReservationTest" TypeName="AlarmUnitDbTest.HomeAwayApiServiceTest.HomeAwayTest.HomeAwayTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateRolesTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateRolesTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateRolesTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateRolesTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest.UpdateRulesOnlyTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" type="MsTestTestMethodElement" MethodName="UpdateRulesOnlyTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.SendThermostatSchedulesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSalesContactRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSalesContactRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSalesRepTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSalesRepTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSalesTerritoryTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSalesTerritoryTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.UpdateSensorActivityMonitoringTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="UpdateSensorActivityMonitoringTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateSiteAccountNameTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateSiteAccountNameTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateSourceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateSourceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest.UpdateStreetAddressTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" type="MsTestTestMethodElement" MethodName="UpdateStreetAddressTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCustomerInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSubDealerType" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSubDealerType" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest.UpdateSupervisionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" type="MsTestTestMethodElement" MethodName="UpdateSupervisionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.EditNotificationsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSupportEmailTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSupportEmailTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSupportNameTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSupportNameTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest.UpdateSupportPhoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" type="MsTestTestMethodElement" MethodName="UpdateSupportPhoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeSubDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest.UpdateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" type="MsTestTestMethodElement" MethodName="UpdateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ReferralDealerTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmSocketListenerTest.ConnectedClientTest.UpdateTimeInZWaveTimeParametersTest" ParentId="MsTest:AlarmUnitDbTest.AlarmSocketListenerTest.ConnectedClientTest" type="MsTestTestMethodElement" MethodName="UpdateTimeInZWaveTimeParametersTest" TypeName="AlarmUnitDbTest.AlarmSocketListenerTest.ConnectedClientTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest.UpdateTimeZoneTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" type="MsTestTestMethodElement" MethodName="UpdateTimeZoneTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerRepTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateTimezoneTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateTimezoneTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateTitleTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateTitleTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest.UpdateTwoWayVoiceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" type="MsTestTestMethodElement" MethodName="UpdateTwoWayVoiceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ModemDataChangesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest.UpdateULModuleSettingsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" type="MsTestTestMethodElement" MethodName="UpdateULModuleSettingsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeCSInfoTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateUnitDescriptionTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateUnitDescriptionTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateUnitMotionClosingDelayTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateUnitMotionClosingDelayTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateUnitTemperatureUnitTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateUnitTemperatureUnitTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateUnitTimezoneTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateUnitTimezoneTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.UpdateUnitTypeIdTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="UpdateUnitTypeIdTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateUnverifiedAddressTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateUnverifiedAddressTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.UpdateUserTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="UpdateUserTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateVerifiedAddressTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateVerifiedAddressTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest.UpdateVideoFormatTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" type="MsTestTestMethodElement" MethodName="UpdateVideoFormatTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.ContactAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest.UpdateZWaveAutomationEventTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" type="MsTestTestMethodElement" MethodName="UpdateZWaveAutomationEventTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeEmpowerSettingsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.UpdateZoneConfigTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="UpdateZoneConfigTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.DeviceListProcessorTest.UpdateZoneInformationAtCsTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.DeviceListProcessorTest" type="MsTestTestMethodElement" MethodName="UpdateZoneInformationAtCsTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.DeviceListProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest.UpdatedGeofenceTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" type="MsTestTestMethodElement" MethodName="UpdatedGeofenceTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.GeoServicesTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest.UrlEncodeTest" ParentId="MsTest:AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" type="MsTestTestMethodElement" MethodName="UrlEncodeTest" TypeName="AlarmUnitTest.AlarmUtilsTests.StringUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest.UserCodePropagationToLocksTest" ParentId="MsTest:AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" type="MsTestTestMethodElement" MethodName="UserCodePropagationToLocksTest" TypeName="AlarmUnitDbTest.AlarmMessageProcessorTest.LongMessagesTest.UserPinsProcessorTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest.UserCodeScheduleClassTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" type="MsTestTestMethodElement" MethodName="UserCodeScheduleClassTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.UserCodeScheduleTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.UserCodesProcessingTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="UserCodesProcessingTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest.UserCommandTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" type="MsTestTestMethodElement" MethodName="UserCommandTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.SendCameraCommandTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.UserNumberOffsetTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="UserNumberOffsetTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest.UsersBTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" type="MsTestTestMethodElement" MethodName="UsersBTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.PointCentralTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.ValidateChecksumTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="ValidateChecksumTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest.ValidateEndPoints" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" type="MsTestTestMethodElement" MethodName="ValidateEndPoints" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.ValidateGatewayIDForLutronTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="ValidateGatewayIDForLutronTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.ValidateLutronStringCommandTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="ValidateLutronStringCommandTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest.ValidatePinsCollectionTest" ParentId="MsTest:AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" type="MsTestTestMethodElement" MethodName="ValidatePinsCollectionTest" TypeName="AlarmUnitDbTest.AlarmCommandsTest.ChangeUserCodesCommandTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest.ValidatePropertyDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" type="MsTestTestMethodElement" MethodName="ValidatePropertyDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.PropertyData.PropertyDataTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.ValidateSerialNumberForLutronTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="ValidateSerialNumberForLutronTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest.ValidateSystemAddressTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" type="MsTestTestMethodElement" MethodName="ValidateSystemAddressTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.SystemAddressTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest.ValidateTaggID" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" type="MsTestTestMethodElement" MethodName="ValidateTaggID" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.TaggWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest.ValidateTemperatureUnitTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" type="MsTestTestMethodElement" MethodName="ValidateTemperatureUnitTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TemperatureUnitTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest.ValidateTimezoneTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" type="MsTestTestMethodElement" MethodName="ValidateTimezoneTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.TimezoneTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest.ValidateUnitDescriptionTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" type="MsTestTestMethodElement" MethodName="ValidateUnitDescriptionTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.SystemSettingsTest.UnitDescriptionTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest.VerificationRequestTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" type="MsTestTestMethodElement" MethodName="VerificationRequestTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.ChangeAccountInformationTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.VerifyAddressFalseTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="VerifyAddressFalseTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest.VerifyAddressTrueTest" ParentId="MsTest:AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" type="MsTestTestMethodElement" MethodName="VerifyAddressTrueTest" TypeName="AlarmUnitDbTest.APICentralStationTest.StagesWebServiceTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest.VerifyCorrectUnitObject" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" type="MsTestTestMethodElement" MethodName="VerifyCorrectUnitObject" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.CustomerTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest.VerifyPinCodeOnLocationsTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" type="MsTestTestMethodElement" MethodName="VerifyPinCodeOnLocationsTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.UserManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.VersionIdForDBTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="VersionIdForDBTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.VersionIdForPokeTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="VersionIdForPokeTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.VersionIdTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="VersionIdTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.VersionStringTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="VersionStringTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.VoiceAlertUpdateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="VoiceAlertUpdateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest.VoiceAndEmailAlertUpdateTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" type="MsTestTestMethodElement" MethodName="VoiceAndEmailAlertUpdateTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.AuditTest.DeviceMonitoringUpdateTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest.VrmLocationDataTest" ParentId="MsTest:AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" type="MsTestTestMethodElement" MethodName="VrmLocationDataTest" TypeName="AlarmUnitDbTest.CustomerDotNetTest.WebServicesTest.EnterpriseTests.LocationsManagementTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest.WardsTest" ParentId="MsTest:AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" type="MsTestTestMethodElement" MethodName="WardsTest" TypeName="AlarmUnitTest.AlarmBusinessObjectsTest.ThermostatScheduleTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.UdpUtilsTest.WrapAsBuilding36PassThroughCommandTest" ParentId="MsTest:AlarmUnitTest.UdpUtilsTest" type="MsTestTestMethodElement" MethodName="WrapAsBuilding36PassThroughCommandTest" TypeName="AlarmUnitTest.UdpUtilsTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest.ZWaveLockAccessPointTest" ParentId="MsTest:AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" type="MsTestTestMethodElement" MethodName="ZWaveLockAccessPointTest" TypeName="AlarmUnitDbTest.AlarmBusinessObjectsTest.DeviceImplementationsTest.AccessPointTest" Project="286E71E2-9FA3-4524-A7E2-496769BD9852" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.ZwaveOnboardTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="ZwaveOnboardTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.VersionTest.ZwaveVersionSupportsOpenNotificationOnLockTest" ParentId="MsTest:AlarmUnitTest.VersionTest" type="MsTestTestMethodElement" MethodName="ZwaveVersionSupportsOpenNotificationOnLockTest" TypeName="AlarmUnitTest.VersionTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.testCleanUp" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="testCleanUp" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.testDeleteEntryFromDB" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="testDeleteEntryFromDB" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.testDoShutdownApplication" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="testDoShutdownApplication" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.testGetKey" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="testGetKey" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /><UnitTestElement Provider="MSTest" Id="MsTest:AlarmUnitTest.AlarmVideoUploaderTest.testRemoveKeyFromM_Threads" ParentId="MsTest:AlarmUnitTest.AlarmVideoUploaderTest" type="MsTestTestMethodElement" MethodName="testRemoveKeyFromM_Threads" TypeName="AlarmUnitTest.AlarmVideoUploaderTest" Project="29771BC8-2655-4133-ABDB-3DA5C5C74025" /></Elements></Session> + False From 688769fe4ccc9fe084087c3e500beb1592ffd90d Mon Sep 17 00:00:00 2001 From: mm2ha Date: Tue, 21 Apr 2015 15:55:07 -0600 Subject: [PATCH 25/31] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index dc7aa12e1a..dab94a9043 100644 --- a/README.md +++ b/README.md @@ -1545,6 +1545,9 @@ // good $sidebar.find('ul').hide(); ``` + + - For `data` attributes (properties), use `.data(propertyName)` instead of `.attr(data-property-name)` + This gives you proper type casting and accesses the jQuery data object instead of having to retrieve it from the DOM. **[⬆ back to top](#table-of-contents)** From 3920eb18c31ecc8e9d0c35525d091a09639df6bd Mon Sep 17 00:00:00 2001 From: mm2ha Date: Wed, 22 Apr 2015 11:29:00 -0600 Subject: [PATCH 26/31] Update README.md --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/README.md b/README.md index dab94a9043..553338969f 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ 1. [Events](#events) 1. [Modules](#modules) 1. [jQuery](#jquery) + 1. [Resources / Translations / Localizations](#resourcesTranslations) 1. [ECMAScript 5 Compatibility](#ecmascript-5-compatibility) 1. [Testing](#testing) 1. [Performance](#performance) @@ -1551,6 +1552,46 @@ **[⬆ back to top](#table-of-contents)** +## Resources / Translations / Localizations + + - Use function `AddResource` in both `BaseUserControl` and `BaseCustomer` page to add resources (translations) to the client side. They will be available in `$.systemDefaults.resources..resourceName` + - `nameSpace` is usually the name of the class with initial lower case letter. It can be overridden via `ResourceNameSpace` + - all non-alphanumeric characters will always be removed from the `nameSpace` and the first letter will be made lowercase + - There is a set of defined generic messages that can be fund in `$.systemDefaults.resources.generic` + - messageSuccess + - messageError + - processing + - loading + - new + - search + - delete + + + ```csharp + // C# + // Add a string variable that holds the message for when the delete button is clicked on a user that must be removed through the Enterprise Users page + this.AddResource("messageCannotDeleteUserTooltip", GetLocalResourceObject("txtCannotDeleteUserTooltipMessage.Text").ToString()); + + // Add a string variable for when the page is unable to load the users through the AJAX calls + this.AddResource("errorLoadingUsers", GetLocalResourceObject("ErrorLoadingUsersText").ToString()); + + // Add a string variable for the tooltip over the resend button + this.AddResource("tooltipResendUserCode", GetLocalResourceObject("txtResendUserCode").ToString()); + ``` + + + ```javascript + // JavaScript + // will output the resource for messageCannotDeleteUserTooltip in usersControl namespace + console.log($.systemDefaults.resources.usersControl.messageCannotDeleteUserTooltip; + + // generic message - generic error message + // this will output the generic error message + console.log($.systemDefaults.resources.generic.messageError); + ``` + + +**[⬆ back to top](#table-of-contents)** ## ECMAScript 5 Compatibility From 22a87182a967d27597b7b1d5d350ec548fbc7d36 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Wed, 22 Apr 2015 11:29:26 -0600 Subject: [PATCH 27/31] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 553338969f..00fabfb975 100644 --- a/README.md +++ b/README.md @@ -1552,7 +1552,7 @@ **[⬆ back to top](#table-of-contents)** -## Resources / Translations / Localizations +## Resources / Translations / Localizations - Use function `AddResource` in both `BaseUserControl` and `BaseCustomer` page to add resources (translations) to the client side. They will be available in `$.systemDefaults.resources..resourceName` - `nameSpace` is usually the name of the class with initial lower case letter. It can be overridden via `ResourceNameSpace` From 362b8035a46556210176029064b09a9936123f5b Mon Sep 17 00:00:00 2001 From: mm2ha Date: Wed, 22 Apr 2015 11:31:10 -0600 Subject: [PATCH 28/31] Update jshintrc --- linters/jshintrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/linters/jshintrc b/linters/jshintrc index 79665f0cb6..b73c38496b 100644 --- a/linters/jshintrc +++ b/linters/jshintrc @@ -81,8 +81,6 @@ // Custom Globals "globals": { "angular": false, - "Modernizr": true, - // we need to move this to translations, but keeping this here for now - "textErrorGenericResource": true + "Modernizr": true } // additional predefined global variables } From 8f76a68f44de37159fd451d565f5b568d7a12693 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Wed, 22 Apr 2015 11:43:32 -0600 Subject: [PATCH 29/31] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00fabfb975..e6e041f954 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/airbnb/javascript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) +[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/mm2ha/javascript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) # Alarm.com JavaScript Style Guide() { From 1e7988d114632b2fad999f4edfce3eb69b982751 Mon Sep 17 00:00:00 2001 From: bls220 Date: Wed, 22 Apr 2015 13:56:26 -0400 Subject: [PATCH 30/31] Fixed typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6e041f954..0f5d75aa45 100644 --- a/README.md +++ b/README.md @@ -1557,7 +1557,7 @@ - Use function `AddResource` in both `BaseUserControl` and `BaseCustomer` page to add resources (translations) to the client side. They will be available in `$.systemDefaults.resources..resourceName` - `nameSpace` is usually the name of the class with initial lower case letter. It can be overridden via `ResourceNameSpace` - all non-alphanumeric characters will always be removed from the `nameSpace` and the first letter will be made lowercase - - There is a set of defined generic messages that can be fund in `$.systemDefaults.resources.generic` + - There is a set of defined generic messages that can be found in `$.systemDefaults.resources.generic` - messageSuccess - messageError - processing From f56b8f942eb09dfe4cff30f14986bf4f85d845c0 Mon Sep 17 00:00:00 2001 From: mm2ha Date: Thu, 23 Apr 2015 12:55:36 -0600 Subject: [PATCH 31/31] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 0f5d75aa45..3e8a8028e8 100644 --- a/README.md +++ b/README.md @@ -1526,6 +1526,17 @@ }); } ``` + + - For any form controls on the page cache them in `this.controls` object + + ```javascript + // in _init + this.controls = {}; + + // later somewhere (maybe in _initControls) + this.controls.mySelect = this.$element.find('select.my-select'); + this.controls.myPropertyArea = this.$element.find('input.property-area'); + ``` - For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](http://jsperf.com/jquery-find-vs-context-sel/16) - Use `find` with scoped jQuery object queries.