| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function t1(c)
- {
- if ((c != -1) != 1)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- function t2(c)
- {
- if ((c <= -1) != 1)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- function t3(c)
- {
- if ((c >= -1) != 1)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- if (!t1(1) && !t1(1) && t1(-1) &&
- t2(1) && t2(1) && !t2(-1) &&
- !t3(1) && !t3(1) && !t3(-1)
- )
- {
- WScript.Echo("Passed");
- }
- else
- {
- WScript.Echo("FAILED");
- }
|