aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html73
1 files changed, 0 insertions, 73 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html b/contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html
deleted file mode 100644
index a70e9c7..0000000
--- a/contexts/data/lib/closure-library/closure/goog/labs/testing/assertthat_test.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2012 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
--->
-<head>
-<title>Closure Unit Tests - goog.labs.testing.assertThat</title>
-<script src="../../base.js"></script>
-<script>
-
-goog.require('goog.labs.testing.Matcher');
-goog.require('goog.labs.testing.assertThat');
-goog.require('goog.testing.recordFunction');
-goog.require('goog.testing.jsunit');
-
-</script>
-</head>
-<body>
-<script>
-
-var successMatchesFn, failureMatchesFn, describeFn, successTestMatcher;
-var failureTestMatcher;
-
-function setUp() {
- successMatchesFn = new goog.testing.recordFunction(function() {return true;});
- failureMatchesFn = new goog.testing.recordFunction(function() {return false;});
- describeFn = new goog.testing.recordFunction();
-
- successTestMatcher = function() {
- return { matches: successMatchesFn, describe: describeFn };
- };
- failureTestMatcher = function() {
- return { matches: failureMatchesFn, describe: describeFn };
- };
-}
-
-function testAssertthatAlwaysCallsMatches() {
- var value = 7;
- goog.labs.testing.assertThat(value, successTestMatcher(),
- 'matches is called on success');
-
- assertEquals(1, successMatchesFn.getCallCount());
- var matchesCall = successMatchesFn.popLastCall();
- assertEquals(value, matchesCall.getArgument(0));
-
- var e = assertThrows(goog.bind(goog.labs.testing.assertThat, null,
- value, failureTestMatcher(), 'matches is called on failure'));
-
- assertTrue(e instanceof goog.labs.testing.MatcherError);
-
- assertEquals(1, failureMatchesFn.getCallCount());
-}
-
-function testAssertthatCallsDescribeOnFailure() {
- var value = 7;
- var e = assertThrows(goog.bind(goog.labs.testing.assertThat, null,
- value, failureTestMatcher(), 'describe is called on failure'));
-
- assertTrue(e instanceof goog.labs.testing.MatcherError);
-
- assertEquals(1, failureMatchesFn.getCallCount());
- assertEquals(1, describeFn.getCallCount());
-
- var matchesCall = describeFn.popLastCall();
- assertEquals(value, matchesCall.getArgument(0));
-}
-
-</script>
-</body>
-</html>