-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy path201_xblend.xml
More file actions
37 lines (30 loc) · 978 Bytes
/
201_xblend.xml
File metadata and controls
37 lines (30 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8" ?>
<!--
/*****************************************************************************
*
* ReoScript - .NET Script Language Engine
*
* https://github.com/unvell/ReoScript
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
* PURPOSE.
*
* This software released under MIT license.
* Copyright (c) 2012-2019 Jingwood, unvell.com, all rights reserved.
*
****************************************************************************/
-->
<test-suite id="201" name="xblend">
<test-case id="001">
<script>
var t = debug.assert;
function User() { }
var usr1 = <User />;
t( usr1 != null );
t( typeof usr1, 'object' );
t( usr1 instanceof User );
</script>
</test-case>
</test-suite>