summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go
diff options
context:
space:
mode:
authorJack <jackdeng@gmail.com>2015-09-23 19:54:07 -0700
committerJack <jackdeng@gmail.com>2015-09-23 19:54:07 -0700
commitf43d35507827216071896cae83544fef1c4c35eb (patch)
tree0cb6c86ff618a0ecd756e81f38bec2ed2c6986c7 /Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go
parent396a535f1001526cde60e77f8fc5e571bf4d882b (diff)
downloadchat-f43d35507827216071896cae83544fef1c4c35eb.tar.gz
chat-f43d35507827216071896cae83544fef1c4c35eb.tar.bz2
chat-f43d35507827216071896cae83544fef1c4c35eb.zip
godep save
Diffstat (limited to 'Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go')
-rw-r--r--Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go57
1 files changed, 0 insertions, 57 deletions
diff --git a/Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go b/Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go
deleted file mode 100644
index d4a76dda5..000000000
--- a/Godeps/_workspace/src/github.com/nfnt/resize/nearest_test.go
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
-Copyright (c) 2014, Charlie Vieth <charlie.vieth@gmail.com>
-
-Permission to use, copy, modify, and/or distribute this software for any purpose
-with or without fee is hereby granted, provided that the above copyright notice
-and this permission notice appear in all copies.
-
-THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
-TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
-THIS SOFTWARE.
-*/
-
-package resize
-
-import "testing"
-
-func Test_FloatToUint8(t *testing.T) {
- var testData = []struct {
- in float32
- expected uint8
- }{
- {0, 0},
- {255, 255},
- {128, 128},
- {1, 1},
- {256, 255},
- }
- for _, test := range testData {
- actual := floatToUint8(test.in)
- if actual != test.expected {
- t.Fail()
- }
- }
-}
-
-func Test_FloatToUint16(t *testing.T) {
- var testData = []struct {
- in float32
- expected uint16
- }{
- {0, 0},
- {65535, 65535},
- {128, 128},
- {1, 1},
- {65536, 65535},
- }
- for _, test := range testData {
- actual := floatToUint16(test.in)
- if actual != test.expected {
- t.Fail()
- }
- }
-}